-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathContactsRequestBuilder.java
More file actions
225 lines (224 loc) · 9.93 KB
/
ContactsRequestBuilder.java
File metadata and controls
225 lines (224 loc) · 9.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
package com.microsoft.graph.beta.contacts;
import com.microsoft.graph.beta.contacts.count.CountRequestBuilder;
import com.microsoft.graph.beta.contacts.delta.DeltaRequestBuilder;
import com.microsoft.graph.beta.contacts.getbyids.GetByIdsRequestBuilder;
import com.microsoft.graph.beta.contacts.getuserownedobjects.GetUserOwnedObjectsRequestBuilder;
import com.microsoft.graph.beta.contacts.item.OrgContactItemRequestBuilder;
import com.microsoft.graph.beta.contacts.validateproperties.ValidatePropertiesRequestBuilder;
import com.microsoft.graph.beta.models.odataerrors.ODataError;
import com.microsoft.graph.beta.models.OrgContactCollectionResponse;
import com.microsoft.kiota.BaseRequestBuilder;
import com.microsoft.kiota.BaseRequestConfiguration;
import com.microsoft.kiota.HttpMethod;
import com.microsoft.kiota.QueryParameters;
import com.microsoft.kiota.RequestAdapter;
import com.microsoft.kiota.RequestInformation;
import com.microsoft.kiota.RequestOption;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParsableFactory;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
/**
* Provides operations to manage the collection of orgContact entities.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class ContactsRequestBuilder extends BaseRequestBuilder {
/**
* Provides operations to count the resources in the collection.
* @return a {@link CountRequestBuilder}
*/
@jakarta.annotation.Nonnull
public CountRequestBuilder count() {
return new CountRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to call the delta method.
* @return a {@link DeltaRequestBuilder}
*/
@jakarta.annotation.Nonnull
public DeltaRequestBuilder delta() {
return new DeltaRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to call the getByIds method.
* @return a {@link GetByIdsRequestBuilder}
*/
@jakarta.annotation.Nonnull
public GetByIdsRequestBuilder getByIds() {
return new GetByIdsRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to call the getUserOwnedObjects method.
* @return a {@link GetUserOwnedObjectsRequestBuilder}
*/
@jakarta.annotation.Nonnull
public GetUserOwnedObjectsRequestBuilder getUserOwnedObjects() {
return new GetUserOwnedObjectsRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to call the validateProperties method.
* @return a {@link ValidatePropertiesRequestBuilder}
*/
@jakarta.annotation.Nonnull
public ValidatePropertiesRequestBuilder validateProperties() {
return new ValidatePropertiesRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to manage the collection of orgContact entities.
* @param orgContactId The unique identifier of orgContact
* @return a {@link OrgContactItemRequestBuilder}
*/
@jakarta.annotation.Nonnull
public OrgContactItemRequestBuilder byOrgContactId(@jakarta.annotation.Nonnull final String orgContactId) {
Objects.requireNonNull(orgContactId);
final HashMap<String, Object> urlTplParams = new HashMap<String, Object>(this.pathParameters);
urlTplParams.put("orgContact%2Did", orgContactId);
return new OrgContactItemRequestBuilder(urlTplParams, requestAdapter);
}
/**
* Instantiates a new {@link ContactsRequestBuilder} and sets the default values.
* @param pathParameters Path parameters for the request
* @param requestAdapter The request adapter to use to execute the requests.
*/
public ContactsRequestBuilder(@jakarta.annotation.Nonnull final HashMap<String, Object> pathParameters, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
super(requestAdapter, "{+baseurl}/contacts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", pathParameters);
}
/**
* Instantiates a new {@link ContactsRequestBuilder} and sets the default values.
* @param rawUrl The raw URL to use for the request builder.
* @param requestAdapter The request adapter to use to execute the requests.
*/
public ContactsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
super(requestAdapter, "{+baseurl}/contacts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
* Get the list of organizational contacts for this organization.
* @return a {@link OrgContactCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @see <a href="https://learn.microsoft.com/graph/api/orgcontact-list?view=graph-rest-beta">Find more info here</a>
*/
@jakarta.annotation.Nullable
public OrgContactCollectionResponse get() {
return get(null);
}
/**
* Get the list of organizational contacts for this organization.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link OrgContactCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @see <a href="https://learn.microsoft.com/graph/api/orgcontact-list?view=graph-rest-beta">Find more info here</a>
*/
@jakarta.annotation.Nullable
public OrgContactCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
return this.requestAdapter.send(requestInfo, errorMapping, OrgContactCollectionResponse::createFromDiscriminatorValue);
}
/**
* Get the list of organizational contacts for this organization.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
* Get the list of organizational contacts for this organization.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
final RequestInformation requestInfo = new RequestInformation(HttpMethod.GET, urlTemplate, pathParameters);
requestInfo.configure(requestConfiguration, GetRequestConfiguration::new, x -> x.queryParameters);
requestInfo.headers.tryAdd("Accept", "application/json");
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link ContactsRequestBuilder}
*/
@jakarta.annotation.Nonnull
public ContactsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new ContactsRequestBuilder(rawUrl, requestAdapter);
}
/**
* Get the list of organizational contacts for this organization.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
/**
* Include count of items
*/
@jakarta.annotation.Nullable
public Boolean count;
/**
* Expand related entities
*/
@jakarta.annotation.Nullable
public String[] expand;
/**
* Filter items by property values
*/
@jakarta.annotation.Nullable
public String filter;
/**
* Order items by property values
*/
@jakarta.annotation.Nullable
public String[] orderby;
/**
* Search items by search phrases
*/
@jakarta.annotation.Nullable
public String search;
/**
* Select properties to be returned
*/
@jakarta.annotation.Nullable
public String[] select;
/**
* Skip the first n items
*/
@jakarta.annotation.Nullable
public Integer skip;
/**
* Show only the first n items
*/
@jakarta.annotation.Nullable
public Integer top;
/**
* Extracts the query parameters into a map for the URI template parsing.
* @return a {@link Map<String, Object>}
*/
@jakarta.annotation.Nonnull
public Map<String, Object> toQueryParameters() {
final Map<String, Object> allQueryParams = new HashMap();
allQueryParams.put("%24count", count);
allQueryParams.put("%24filter", filter);
allQueryParams.put("%24search", search);
allQueryParams.put("%24skip", skip);
allQueryParams.put("%24top", top);
allQueryParams.put("%24expand", expand);
allQueryParams.put("%24orderby", orderby);
allQueryParams.put("%24select", select);
return allQueryParams;
}
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetRequestConfiguration extends BaseRequestConfiguration {
/**
* Request query parameters
*/
@jakarta.annotation.Nullable
public GetQueryParameters queryParameters = new GetQueryParameters();
}
}