Skip to content

Commit de51980

Browse files
andrueastmanMicrosoft Graph DevX Tooling
and
Microsoft Graph DevX Tooling
authored
feat(generation): update request builders and models (#2201)
Update generated files with build 167435 Co-authored-by: Microsoft Graph DevX Tooling <GraphTooling@service.microsoft.com>
1 parent 0840ef6 commit de51980

File tree

61 files changed

+452
-456
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+452
-456
lines changed

src/main/java/com/microsoft/graph/generated/chats/item/messages/MessagesRequestBuilder.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -93,23 +93,23 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java
9393
return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue);
9494
}
9595
/**
96-
* Send a new chatMessage in the specified channel or a chat.
96+
* Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
9797
* @param body The request body
9898
* @return a {@link ChatMessage}
9999
* @throws ODataError When receiving a 4XX or 5XX status code
100-
* @see <a href="https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0">Find more info here</a>
100+
* @see <a href="https://learn.microsoft.com/graph/api/chat-post-messages?view=graph-rest-1.0">Find more info here</a>
101101
*/
102102
@jakarta.annotation.Nullable
103103
public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) {
104104
return post(body, null);
105105
}
106106
/**
107-
* Send a new chatMessage in the specified channel or a chat.
107+
* Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
108108
* @param body The request body
109109
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
110110
* @return a {@link ChatMessage}
111111
* @throws ODataError When receiving a 4XX or 5XX status code
112-
* @see <a href="https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0">Find more info here</a>
112+
* @see <a href="https://learn.microsoft.com/graph/api/chat-post-messages?view=graph-rest-1.0">Find more info here</a>
113113
*/
114114
@jakarta.annotation.Nullable
115115
public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer<PostRequestConfiguration> requestConfiguration) {
@@ -140,7 +140,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
140140
return requestInfo;
141141
}
142142
/**
143-
* Send a new chatMessage in the specified channel or a chat.
143+
* Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
144144
* @param body The request body
145145
* @return a {@link RequestInformation}
146146
*/
@@ -149,7 +149,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
149149
return toPostRequestInformation(body, null);
150150
}
151151
/**
152-
* Send a new chatMessage in the specified channel or a chat.
152+
* Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
153153
* @param body The request body
154154
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
155155
* @return a {@link RequestInformation}

src/main/java/com/microsoft/graph/generated/communications/callrecords/microsoftgraphcallrecordsgetpstncallswithfromdatetimewithtodatetime/MicrosoftGraphCallRecordsGetPstnCallsWithFromDateTimeWithToDateTimeRequestBuilder.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public MicrosoftGraphCallRecordsGetPstnCallsWithFromDateTimeWithToDateTimeReques
4141
super(requestAdapter, "{+baseurl}/communications/callRecords/microsoft.graph.callRecords.getPstnCalls(fromDateTime={fromDateTime},toDateTime={toDateTime}){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl);
4242
}
4343
/**
44-
* Get log of PSTN calls as a collection of pstnCallLogRow entries.
44+
* Get a log of PSTN calls as a collection of pstnCallLogRow entries.
4545
* @return a {@link GetPstnCallsWithFromDateTimeWithToDateTimeGetResponse}
4646
* @throws ODataError When receiving a 4XX or 5XX status code
4747
*/
@@ -50,7 +50,7 @@ public GetPstnCallsWithFromDateTimeWithToDateTimeGetResponse get() {
5050
return get(null);
5151
}
5252
/**
53-
* Get log of PSTN calls as a collection of pstnCallLogRow entries.
53+
* Get a log of PSTN calls as a collection of pstnCallLogRow entries.
5454
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5555
* @return a {@link GetPstnCallsWithFromDateTimeWithToDateTimeGetResponse}
5656
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -63,15 +63,15 @@ public GetPstnCallsWithFromDateTimeWithToDateTimeGetResponse get(@jakarta.annota
6363
return this.requestAdapter.send(requestInfo, errorMapping, GetPstnCallsWithFromDateTimeWithToDateTimeGetResponse::createFromDiscriminatorValue);
6464
}
6565
/**
66-
* Get log of PSTN calls as a collection of pstnCallLogRow entries.
66+
* Get a log of PSTN calls as a collection of pstnCallLogRow entries.
6767
* @return a {@link RequestInformation}
6868
*/
6969
@jakarta.annotation.Nonnull
7070
public RequestInformation toGetRequestInformation() {
7171
return toGetRequestInformation(null);
7272
}
7373
/**
74-
* Get log of PSTN calls as a collection of pstnCallLogRow entries.
74+
* Get a log of PSTN calls as a collection of pstnCallLogRow entries.
7575
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7676
* @return a {@link RequestInformation}
7777
*/
@@ -93,7 +93,7 @@ public MicrosoftGraphCallRecordsGetPstnCallsWithFromDateTimeWithToDateTimeReques
9393
return new MicrosoftGraphCallRecordsGetPstnCallsWithFromDateTimeWithToDateTimeRequestBuilder(rawUrl, requestAdapter);
9494
}
9595
/**
96-
* Get log of PSTN calls as a collection of pstnCallLogRow entries.
96+
* Get a log of PSTN calls as a collection of pstnCallLogRow entries.
9797
*/
9898
@jakarta.annotation.Generated("com.microsoft.kiota")
9999
public class GetQueryParameters implements QueryParameters {

src/main/java/com/microsoft/graph/generated/deviceappmanagement/DeviceAppManagementRequestBuilder.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public DeviceAppManagementRequestBuilder(@jakarta.annotation.Nonnull final Strin
175175
* Read properties and relationships of the deviceAppManagement object.
176176
* @return a {@link DeviceAppManagement}
177177
* @throws ODataError When receiving a 4XX or 5XX status code
178-
* @see <a href="https://learn.microsoft.com/graph/api/intune-partnerintegration-deviceappmanagement-get?view=graph-rest-1.0">Find more info here</a>
178+
* @see <a href="https://learn.microsoft.com/graph/api/intune-apps-deviceappmanagement-get?view=graph-rest-1.0">Find more info here</a>
179179
*/
180180
@jakarta.annotation.Nullable
181181
public DeviceAppManagement get() {
@@ -186,7 +186,7 @@ public DeviceAppManagement get() {
186186
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
187187
* @return a {@link DeviceAppManagement}
188188
* @throws ODataError When receiving a 4XX or 5XX status code
189-
* @see <a href="https://learn.microsoft.com/graph/api/intune-partnerintegration-deviceappmanagement-get?view=graph-rest-1.0">Find more info here</a>
189+
* @see <a href="https://learn.microsoft.com/graph/api/intune-apps-deviceappmanagement-get?view=graph-rest-1.0">Find more info here</a>
190190
*/
191191
@jakarta.annotation.Nullable
192192
public DeviceAppManagement get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
@@ -200,7 +200,7 @@ public DeviceAppManagement get(@jakarta.annotation.Nullable final java.util.func
200200
* @param body The request body
201201
* @return a {@link DeviceAppManagement}
202202
* @throws ODataError When receiving a 4XX or 5XX status code
203-
* @see <a href="https://learn.microsoft.com/graph/api/intune-apps-deviceappmanagement-update?view=graph-rest-1.0">Find more info here</a>
203+
* @see <a href="https://learn.microsoft.com/graph/api/intune-books-deviceappmanagement-update?view=graph-rest-1.0">Find more info here</a>
204204
*/
205205
@jakarta.annotation.Nullable
206206
public DeviceAppManagement patch(@jakarta.annotation.Nonnull final DeviceAppManagement body) {
@@ -212,7 +212,7 @@ public DeviceAppManagement patch(@jakarta.annotation.Nonnull final DeviceAppMana
212212
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
213213
* @return a {@link DeviceAppManagement}
214214
* @throws ODataError When receiving a 4XX or 5XX status code
215-
* @see <a href="https://learn.microsoft.com/graph/api/intune-apps-deviceappmanagement-update?view=graph-rest-1.0">Find more info here</a>
215+
* @see <a href="https://learn.microsoft.com/graph/api/intune-books-deviceappmanagement-update?view=graph-rest-1.0">Find more info here</a>
216216
*/
217217
@jakarta.annotation.Nullable
218218
public DeviceAppManagement patch(@jakarta.annotation.Nonnull final DeviceAppManagement body, @jakarta.annotation.Nullable final java.util.function.Consumer<PatchRequestConfiguration> requestConfiguration) {

src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/ManagedAppRegistrationsRequestBuilder.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -69,21 +69,21 @@ public ManagedAppRegistrationsRequestBuilder(@jakarta.annotation.Nonnull final S
6969
super(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppRegistrations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
7070
}
7171
/**
72-
* List properties and relationships of the managedAppRegistration objects.
72+
* List properties and relationships of the iosManagedAppRegistration objects.
7373
* @return a {@link ManagedAppRegistrationCollectionResponse}
7474
* @throws ODataError When receiving a 4XX or 5XX status code
75-
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappregistration-list?view=graph-rest-1.0">Find more info here</a>
75+
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-iosmanagedappregistration-list?view=graph-rest-1.0">Find more info here</a>
7676
*/
7777
@jakarta.annotation.Nullable
7878
public ManagedAppRegistrationCollectionResponse get() {
7979
return get(null);
8080
}
8181
/**
82-
* List properties and relationships of the managedAppRegistration objects.
82+
* List properties and relationships of the iosManagedAppRegistration objects.
8383
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8484
* @return a {@link ManagedAppRegistrationCollectionResponse}
8585
* @throws ODataError When receiving a 4XX or 5XX status code
86-
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappregistration-list?view=graph-rest-1.0">Find more info here</a>
86+
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-iosmanagedappregistration-list?view=graph-rest-1.0">Find more info here</a>
8787
*/
8888
@jakarta.annotation.Nullable
8989
public ManagedAppRegistrationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
@@ -120,15 +120,15 @@ public ManagedAppRegistration post(@jakarta.annotation.Nonnull final ManagedAppR
120120
return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppRegistration::createFromDiscriminatorValue);
121121
}
122122
/**
123-
* List properties and relationships of the managedAppRegistration objects.
123+
* List properties and relationships of the iosManagedAppRegistration objects.
124124
* @return a {@link RequestInformation}
125125
*/
126126
@jakarta.annotation.Nonnull
127127
public RequestInformation toGetRequestInformation() {
128128
return toGetRequestInformation(null);
129129
}
130130
/**
131-
* List properties and relationships of the managedAppRegistration objects.
131+
* List properties and relationships of the iosManagedAppRegistration objects.
132132
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
133133
* @return a {@link RequestInformation}
134134
*/
@@ -174,7 +174,7 @@ public ManagedAppRegistrationsRequestBuilder withUrl(@jakarta.annotation.Nonnull
174174
return new ManagedAppRegistrationsRequestBuilder(rawUrl, requestAdapter);
175175
}
176176
/**
177-
* List properties and relationships of the managedAppRegistration objects.
177+
* List properties and relationships of the iosManagedAppRegistration objects.
178178
*/
179179
@jakarta.annotation.Generated("com.microsoft.kiota")
180180
public class GetQueryParameters implements QueryParameters {

src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/ManagedAppStatusesRequestBuilder.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -60,21 +60,21 @@ public ManagedAppStatusesRequestBuilder(@jakarta.annotation.Nonnull final String
6060
super(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppStatuses{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
6161
}
6262
/**
63-
* List properties and relationships of the managedAppStatus objects.
63+
* List properties and relationships of the managedAppStatusRaw objects.
6464
* @return a {@link ManagedAppStatusCollectionResponse}
6565
* @throws ODataError When receiving a 4XX or 5XX status code
66-
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappstatus-list?view=graph-rest-1.0">Find more info here</a>
66+
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappstatusraw-list?view=graph-rest-1.0">Find more info here</a>
6767
*/
6868
@jakarta.annotation.Nullable
6969
public ManagedAppStatusCollectionResponse get() {
7070
return get(null);
7171
}
7272
/**
73-
* List properties and relationships of the managedAppStatus objects.
73+
* List properties and relationships of the managedAppStatusRaw objects.
7474
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7575
* @return a {@link ManagedAppStatusCollectionResponse}
7676
* @throws ODataError When receiving a 4XX or 5XX status code
77-
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappstatus-list?view=graph-rest-1.0">Find more info here</a>
77+
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappstatusraw-list?view=graph-rest-1.0">Find more info here</a>
7878
*/
7979
@jakarta.annotation.Nullable
8080
public ManagedAppStatusCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
@@ -109,15 +109,15 @@ public ManagedAppStatus post(@jakarta.annotation.Nonnull final ManagedAppStatus
109109
return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppStatus::createFromDiscriminatorValue);
110110
}
111111
/**
112-
* List properties and relationships of the managedAppStatus objects.
112+
* List properties and relationships of the managedAppStatusRaw objects.
113113
* @return a {@link RequestInformation}
114114
*/
115115
@jakarta.annotation.Nonnull
116116
public RequestInformation toGetRequestInformation() {
117117
return toGetRequestInformation(null);
118118
}
119119
/**
120-
* List properties and relationships of the managedAppStatus objects.
120+
* List properties and relationships of the managedAppStatusRaw objects.
121121
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
122122
* @return a {@link RequestInformation}
123123
*/
@@ -163,7 +163,7 @@ public ManagedAppStatusesRequestBuilder withUrl(@jakarta.annotation.Nonnull fina
163163
return new ManagedAppStatusesRequestBuilder(rawUrl, requestAdapter);
164164
}
165165
/**
166-
* List properties and relationships of the managedAppStatus objects.
166+
* List properties and relationships of the managedAppStatusRaw objects.
167167
*/
168168
@jakarta.annotation.Generated("com.microsoft.kiota")
169169
public class GetQueryParameters implements QueryParameters {

src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/item/ManagedAppStatusItemRequestBuilder.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
5555
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
5656
}
5757
/**
58-
* Read properties and relationships of the managedAppStatus object.
58+
* Read properties and relationships of the managedAppStatusRaw object.
5959
* @return a {@link ManagedAppStatus}
6060
* @throws ODataError When receiving a 4XX or 5XX status code
61-
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappstatus-get?view=graph-rest-1.0">Find more info here</a>
61+
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappstatusraw-get?view=graph-rest-1.0">Find more info here</a>
6262
*/
6363
@jakarta.annotation.Nullable
6464
public ManagedAppStatus get() {
6565
return get(null);
6666
}
6767
/**
68-
* Read properties and relationships of the managedAppStatus object.
68+
* Read properties and relationships of the managedAppStatusRaw object.
6969
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7070
* @return a {@link ManagedAppStatus}
7171
* @throws ODataError When receiving a 4XX or 5XX status code
72-
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappstatus-get?view=graph-rest-1.0">Find more info here</a>
72+
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappstatusraw-get?view=graph-rest-1.0">Find more info here</a>
7373
*/
7474
@jakarta.annotation.Nullable
7575
public ManagedAppStatus get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
@@ -124,15 +124,15 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
124124
return requestInfo;
125125
}
126126
/**
127-
* Read properties and relationships of the managedAppStatus object.
127+
* Read properties and relationships of the managedAppStatusRaw object.
128128
* @return a {@link RequestInformation}
129129
*/
130130
@jakarta.annotation.Nonnull
131131
public RequestInformation toGetRequestInformation() {
132132
return toGetRequestInformation(null);
133133
}
134134
/**
135-
* Read properties and relationships of the managedAppStatus object.
135+
* Read properties and relationships of the managedAppStatusRaw object.
136136
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
137137
* @return a {@link RequestInformation}
138138
*/
@@ -184,7 +184,7 @@ public ManagedAppStatusItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi
184184
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
185185
}
186186
/**
187-
* Read properties and relationships of the managedAppStatus object.
187+
* Read properties and relationships of the managedAppStatusRaw object.
188188
*/
189189
@jakarta.annotation.Generated("com.microsoft.kiota")
190190
public class GetQueryParameters implements QueryParameters {

0 commit comments

Comments
 (0)