Skip to content

Commit 49e9583

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
Microsoft Graph DevX Tooling
authored and
Microsoft Graph DevX Tooling
committed
feat(generation): update request builders and models
Update generated files with build 149875
1 parent f8e867a commit 49e9583

File tree

87 files changed

+655
-535
lines changed

Some content is hidden

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

87 files changed

+655
-535
lines changed

src/main/java/com/microsoft/graph/generated/chats/item/members/item/ConversationMemberItemRequestBuilder.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -57,21 +57,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
5757
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
5858
}
5959
/**
60-
* Retrieve a conversationMember from a chat.
60+
* Retrieve a conversationMember from a chat or channel.
6161
* @return a {@link ConversationMember}
6262
* @throws ODataError When receiving a 4XX or 5XX status code
63-
* @see <a href="https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0">Find more info here</a>
63+
* @see <a href="https://learn.microsoft.com/graph/api/conversationmember-get?view=graph-rest-1.0">Find more info here</a>
6464
*/
6565
@jakarta.annotation.Nullable
6666
public ConversationMember get() {
6767
return get(null);
6868
}
6969
/**
70-
* Retrieve a conversationMember from a chat.
70+
* Retrieve a conversationMember from a chat or channel.
7171
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7272
* @return a {@link ConversationMember}
7373
* @throws ODataError When receiving a 4XX or 5XX status code
74-
* @see <a href="https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0">Find more info here</a>
74+
* @see <a href="https://learn.microsoft.com/graph/api/conversationmember-get?view=graph-rest-1.0">Find more info here</a>
7575
*/
7676
@jakarta.annotation.Nullable
7777
public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
@@ -126,15 +126,15 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
126126
return requestInfo;
127127
}
128128
/**
129-
* Retrieve a conversationMember from a chat.
129+
* Retrieve a conversationMember from a chat or channel.
130130
* @return a {@link RequestInformation}
131131
*/
132132
@jakarta.annotation.Nonnull
133133
public RequestInformation toGetRequestInformation() {
134134
return toGetRequestInformation(null);
135135
}
136136
/**
137-
* Retrieve a conversationMember from a chat.
137+
* Retrieve a conversationMember from a chat or channel.
138138
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
139139
* @return a {@link RequestInformation}
140140
*/
@@ -186,7 +186,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull
186186
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
187187
}
188188
/**
189-
* Retrieve a conversationMember from a chat.
189+
* Retrieve a conversationMember from a chat or channel.
190190
*/
191191
@jakarta.annotation.Generated("com.microsoft.kiota")
192192
public class GetQueryParameters implements QueryParameters {

src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/attendeereport/AttendeeReportRequestBuilder.java

+12-12
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ public AttendeeReportRequestBuilder(@jakarta.annotation.Nonnull final String raw
3636
super(requestAdapter, "{+baseurl}/communications/onlineMeetings/{onlineMeeting%2Did}/attendeeReport", rawUrl);
3737
}
3838
/**
39-
* Delete attendeeReport for the navigation property onlineMeetings in communications
39+
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
4040
* @throws ODataError When receiving a 4XX or 5XX status code
4141
*/
4242
public void delete() {
4343
delete(null);
4444
}
4545
/**
46-
* Delete attendeeReport for the navigation property onlineMeetings in communications
46+
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
4747
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
4848
* @throws ODataError When receiving a 4XX or 5XX status code
4949
*/
@@ -54,7 +54,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
5454
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
5555
}
5656
/**
57-
* Get attendeeReport for the navigation property onlineMeetings from communications
57+
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
5858
* @return a {@link InputStream}
5959
* @throws ODataError When receiving a 4XX or 5XX status code
6060
*/
@@ -63,7 +63,7 @@ public InputStream get() {
6363
return get(null);
6464
}
6565
/**
66-
* Get attendeeReport for the navigation property onlineMeetings from communications
66+
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
6767
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6868
* @return a {@link InputStream}
6969
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -76,7 +76,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con
7676
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class);
7777
}
7878
/**
79-
* Update attendeeReport for the navigation property onlineMeetings in communications
79+
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
8080
* @param body Binary request body
8181
* @return a {@link InputStream}
8282
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -86,7 +86,7 @@ public InputStream put(@jakarta.annotation.Nonnull final InputStream body) {
8686
return put(body, null);
8787
}
8888
/**
89-
* Update attendeeReport for the navigation property onlineMeetings in communications
89+
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
9090
* @param body Binary request body
9191
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9292
* @return a {@link InputStream}
@@ -101,15 +101,15 @@ public InputStream put(@jakarta.annotation.Nonnull final InputStream body, @jaka
101101
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class);
102102
}
103103
/**
104-
* Delete attendeeReport for the navigation property onlineMeetings in communications
104+
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
105105
* @return a {@link RequestInformation}
106106
*/
107107
@jakarta.annotation.Nonnull
108108
public RequestInformation toDeleteRequestInformation() {
109109
return toDeleteRequestInformation(null);
110110
}
111111
/**
112-
* Delete attendeeReport for the navigation property onlineMeetings in communications
112+
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
113113
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
114114
* @return a {@link RequestInformation}
115115
*/
@@ -121,15 +121,15 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
121121
return requestInfo;
122122
}
123123
/**
124-
* Get attendeeReport for the navigation property onlineMeetings from communications
124+
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
125125
* @return a {@link RequestInformation}
126126
*/
127127
@jakarta.annotation.Nonnull
128128
public RequestInformation toGetRequestInformation() {
129129
return toGetRequestInformation(null);
130130
}
131131
/**
132-
* Get attendeeReport for the navigation property onlineMeetings from communications
132+
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
133133
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
134134
* @return a {@link RequestInformation}
135135
*/
@@ -141,7 +141,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
141141
return requestInfo;
142142
}
143143
/**
144-
* Update attendeeReport for the navigation property onlineMeetings in communications
144+
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
145145
* @param body Binary request body
146146
* @return a {@link RequestInformation}
147147
*/
@@ -150,7 +150,7 @@ public RequestInformation toPutRequestInformation(@jakarta.annotation.Nonnull fi
150150
return toPutRequestInformation(body, null);
151151
}
152152
/**
153-
* Update attendeeReport for the navigation property onlineMeetings in communications
153+
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
154154
* @param body Binary request body
155155
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
156156
* @return a {@link RequestInformation}

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-policyset-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-policyset-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-onboarding-deviceappmanagement-update?view=graph-rest-1.0">Find more info here</a>
203+
* @see <a href="https://learn.microsoft.com/graph/api/intune-apps-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-onboarding-deviceappmanagement-update?view=graph-rest-1.0">Find more info here</a>
215+
* @see <a href="https://learn.microsoft.com/graph/api/intune-apps-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/managedapppolicies/ManagedAppPoliciesRequestBuilder.java

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

src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/ManagedAppPolicyItemRequestBuilder.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -64,21 +64,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
6464
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
6565
}
6666
/**
67-
* Read properties and relationships of the managedAppPolicy object.
67+
* Read properties and relationships of the managedAppConfiguration object.
6868
* @return a {@link ManagedAppPolicy}
6969
* @throws ODataError When receiving a 4XX or 5XX status code
70-
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-get?view=graph-rest-1.0">Find more info here</a>
70+
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-get?view=graph-rest-1.0">Find more info here</a>
7171
*/
7272
@jakarta.annotation.Nullable
7373
public ManagedAppPolicy get() {
7474
return get(null);
7575
}
7676
/**
77-
* Read properties and relationships of the managedAppPolicy object.
77+
* Read properties and relationships of the managedAppConfiguration object.
7878
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7979
* @return a {@link ManagedAppPolicy}
8080
* @throws ODataError When receiving a 4XX or 5XX status code
81-
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-get?view=graph-rest-1.0">Find more info here</a>
81+
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-get?view=graph-rest-1.0">Find more info here</a>
8282
*/
8383
@jakarta.annotation.Nullable
8484
public ManagedAppPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
@@ -133,15 +133,15 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
133133
return requestInfo;
134134
}
135135
/**
136-
* Read properties and relationships of the managedAppPolicy object.
136+
* Read properties and relationships of the managedAppConfiguration object.
137137
* @return a {@link RequestInformation}
138138
*/
139139
@jakarta.annotation.Nonnull
140140
public RequestInformation toGetRequestInformation() {
141141
return toGetRequestInformation(null);
142142
}
143143
/**
144-
* Read properties and relationships of the managedAppPolicy object.
144+
* Read properties and relationships of the managedAppConfiguration object.
145145
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
146146
* @return a {@link RequestInformation}
147147
*/
@@ -193,7 +193,7 @@ public ManagedAppPolicyItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi
193193
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
194194
}
195195
/**
196-
* Read properties and relationships of the managedAppPolicy object.
196+
* Read properties and relationships of the managedAppConfiguration object.
197197
*/
198198
@jakarta.annotation.Generated("com.microsoft.kiota")
199199
public class GetQueryParameters implements QueryParameters {

src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/targetapps/TargetAppsRequestBuilder.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public TargetAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
3838
* Not yet documented
3939
* @param body The request body
4040
* @throws ODataError When receiving a 4XX or 5XX status code
41-
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0">Find more info here</a>
41+
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0">Find more info here</a>
4242
*/
4343
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body) {
4444
post(body, null);
@@ -48,7 +48,7 @@ public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody bod
4848
* @param body The request body
4949
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5050
* @throws ODataError When receiving a 4XX or 5XX status code
51-
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0">Find more info here</a>
51+
* @see <a href="https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0">Find more info here</a>
5252
*/
5353
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer<PostRequestConfiguration> requestConfiguration) {
5454
Objects.requireNonNull(body);

0 commit comments

Comments
 (0)