Skip to content

Commit d6387be

Browse files
authored
Merge pull request #2504 from microsoftgraph/kiota/v1.0/pipelinebuild/149875
Generated models and request builders
2 parents 648432b + 372bf0e commit d6387be

File tree

95 files changed

+392
-299
lines changed

Some content is hidden

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

95 files changed

+392
-299
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project does adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [5.54.0] - 2024-05-23
9+
10+
- Latest metadata updates from 21st May 2024.
911

1012
## [5.53.0] - 2024-05-16
1113

src/Microsoft.Graph/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ public async Task DeleteAsync(Action<RequestConfiguration<DefaultQueryParameters
5656
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
5757
}
5858
/// <summary>
59-
/// Retrieve a conversationMember from a chat.
60-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0" />
59+
/// Retrieve a conversationMember from a chat or channel.
60+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/conversationmember-get?view=graph-rest-1.0" />
6161
/// </summary>
6262
/// <returns>A <see cref="ConversationMember"/></returns>
6363
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
@@ -124,7 +124,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
124124
return requestInfo;
125125
}
126126
/// <summary>
127-
/// Retrieve a conversationMember from a chat.
127+
/// Retrieve a conversationMember from a chat or channel.
128128
/// </summary>
129129
/// <returns>A <see cref="RequestInformation"/></returns>
130130
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -181,7 +181,7 @@ public class ConversationMemberItemRequestBuilderDeleteRequestConfiguration : Re
181181
{
182182
}
183183
/// <summary>
184-
/// Retrieve a conversationMember from a chat.
184+
/// Retrieve a conversationMember from a chat or channel.
185185
/// </summary>
186186
public class ConversationMemberItemRequestBuilderGetQueryParameters
187187
{

src/Microsoft.Graph/Generated/Communications/OnlineMeetings/Item/AttendeeReport/AttendeeReportRequestBuilder.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public AttendeeReportRequestBuilder(string rawUrl, IRequestAdapter requestAdapte
3232
{
3333
}
3434
/// <summary>
35-
/// Delete attendeeReport for the navigation property onlineMeetings in communications
35+
/// The content stream of the attendee report of a Microsoft Teams live event. Read-only.
3636
/// </summary>
3737
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
3838
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -54,7 +54,7 @@ public async Task DeleteAsync(Action<RequestConfiguration<DefaultQueryParameters
5454
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
5555
}
5656
/// <summary>
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
/// </summary>
5959
/// <returns>A <see cref="Stream"/></returns>
6060
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
@@ -77,7 +77,7 @@ public async Task<Stream> GetAsync(Action<RequestConfiguration<DefaultQueryParam
7777
return await RequestAdapter.SendPrimitiveAsync<Stream>(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
7878
}
7979
/// <summary>
80-
/// Update attendeeReport for the navigation property onlineMeetings in communications
80+
/// The content stream of the attendee report of a Microsoft Teams live event. Read-only.
8181
/// </summary>
8282
/// <returns>A <see cref="Stream"/></returns>
8383
/// <param name="body">Binary request body</param>
@@ -102,7 +102,7 @@ public async Task<Stream> PutAsync(Stream body, Action<RequestConfiguration<Defa
102102
return await RequestAdapter.SendPrimitiveAsync<Stream>(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
103103
}
104104
/// <summary>
105-
/// Delete attendeeReport for the navigation property onlineMeetings in communications
105+
/// The content stream of the attendee report of a Microsoft Teams live event. Read-only.
106106
/// </summary>
107107
/// <returns>A <see cref="RequestInformation"/></returns>
108108
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -121,7 +121,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
121121
return requestInfo;
122122
}
123123
/// <summary>
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
/// </summary>
126126
/// <returns>A <see cref="RequestInformation"/></returns>
127127
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -140,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<De
140140
return requestInfo;
141141
}
142142
/// <summary>
143-
/// Update attendeeReport for the navigation property onlineMeetings in communications
143+
/// The content stream of the attendee report of a Microsoft Teams live event. Read-only.
144144
/// </summary>
145145
/// <returns>A <see cref="RequestInformation"/></returns>
146146
/// <param name="body">Binary request body</param>

src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public DeviceAppManagementRequestBuilder(string rawUrl, IRequestAdapter requestA
124124
}
125125
/// <summary>
126126
/// Read properties and relationships of the deviceAppManagement object.
127-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-partnerintegration-deviceappmanagement-get?view=graph-rest-1.0" />
127+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-policyset-deviceappmanagement-get?view=graph-rest-1.0" />
128128
/// </summary>
129129
/// <returns>A <see cref="Microsoft.Graph.Models.DeviceAppManagement"/></returns>
130130
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
@@ -148,7 +148,7 @@ public DeviceAppManagementRequestBuilder(string rawUrl, IRequestAdapter requestA
148148
}
149149
/// <summary>
150150
/// Update the properties of a deviceAppManagement object.
151-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-onboarding-deviceappmanagement-update?view=graph-rest-1.0" />
151+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-apps-deviceappmanagement-update?view=graph-rest-1.0" />
152152
/// </summary>
153153
/// <returns>A <see cref="Microsoft.Graph.Models.DeviceAppManagement"/></returns>
154154
/// <param name="body">The request body</param>

src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ public async Task DeleteAsync(Action<RequestConfiguration<DefaultQueryParameters
6161
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
6262
}
6363
/// <summary>
64-
/// Read properties and relationships of the managedAppPolicy object.
65-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-get?view=graph-rest-1.0" />
64+
/// Read properties and relationships of the managedAppConfiguration object.
65+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-get?view=graph-rest-1.0" />
6666
/// </summary>
6767
/// <returns>A <see cref="ManagedAppPolicy"/></returns>
6868
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
@@ -129,7 +129,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
129129
return requestInfo;
130130
}
131131
/// <summary>
132-
/// Read properties and relationships of the managedAppPolicy object.
132+
/// Read properties and relationships of the managedAppConfiguration object.
133133
/// </summary>
134134
/// <returns>A <see cref="RequestInformation"/></returns>
135135
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -186,7 +186,7 @@ public class ManagedAppPolicyItemRequestBuilderDeleteRequestConfiguration : Requ
186186
{
187187
}
188188
/// <summary>
189-
/// Read properties and relationships of the managedAppPolicy object.
189+
/// Read properties and relationships of the managedAppConfiguration object.
190190
/// </summary>
191191
public class ManagedAppPolicyItemRequestBuilderGetQueryParameters
192192
{

src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
3333
}
3434
/// <summary>
3535
/// Not yet documented
36-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0" />
36+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0" />
3737
/// </summary>
3838
/// <param name="body">The request body</param>
3939
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>

src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ public ManagedAppPoliciesRequestBuilder(string rawUrl, IRequestAdapter requestAd
5252
{
5353
}
5454
/// <summary>
55-
/// List properties and relationships of the managedAppConfiguration objects.
56-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-list?view=graph-rest-1.0" />
55+
/// List properties and relationships of the managedAppProtection objects.
56+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-list?view=graph-rest-1.0" />
5757
/// </summary>
5858
/// <returns>A <see cref="ManagedAppPolicyCollectionResponse"/></returns>
5959
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
@@ -101,7 +101,7 @@ public async Task<ManagedAppPolicy> PostAsync(ManagedAppPolicy body, Action<Requ
101101
return await RequestAdapter.SendAsync<ManagedAppPolicy>(requestInfo, ManagedAppPolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
102102
}
103103
/// <summary>
104-
/// List properties and relationships of the managedAppConfiguration objects.
104+
/// List properties and relationships of the managedAppProtection objects.
105105
/// </summary>
106106
/// <returns>A <see cref="RequestInformation"/></returns>
107107
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -151,7 +151,7 @@ public ManagedAppPoliciesRequestBuilder WithUrl(string rawUrl)
151151
return new ManagedAppPoliciesRequestBuilder(rawUrl, RequestAdapter);
152152
}
153153
/// <summary>
154-
/// List properties and relationships of the managedAppConfiguration objects.
154+
/// List properties and relationships of the managedAppProtection objects.
155155
/// </summary>
156156
public class ManagedAppPoliciesRequestBuilderGetQueryParameters
157157
{

src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
3333
}
3434
/// <summary>
3535
/// Not yet documented
36-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0" />
36+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0" />
3737
/// </summary>
3838
/// <param name="body">The request body</param>
3939
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>

src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
3333
}
3434
/// <summary>
3535
/// Not yet documented
36-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0" />
36+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0" />
3737
/// </summary>
3838
/// <param name="body">The request body</param>
3939
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>

src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ public async Task DeleteAsync(Action<RequestConfiguration<DefaultQueryParameters
5555
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
5656
}
5757
/// <summary>
58-
/// Read properties and relationships of the managedAppStatus object.
59-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappstatus-get?view=graph-rest-1.0" />
58+
/// Read properties and relationships of the managedAppStatusRaw object.
59+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappstatusraw-get?view=graph-rest-1.0" />
6060
/// </summary>
6161
/// <returns>A <see cref="ManagedAppStatus"/></returns>
6262
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
@@ -123,7 +123,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
123123
return requestInfo;
124124
}
125125
/// <summary>
126-
/// Read properties and relationships of the managedAppStatus object.
126+
/// Read properties and relationships of the managedAppStatusRaw object.
127127
/// </summary>
128128
/// <returns>A <see cref="RequestInformation"/></returns>
129129
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -180,7 +180,7 @@ public class ManagedAppStatusItemRequestBuilderDeleteRequestConfiguration : Requ
180180
{
181181
}
182182
/// <summary>
183-
/// Read properties and relationships of the managedAppStatus object.
183+
/// Read properties and relationships of the managedAppStatusRaw object.
184184
/// </summary>
185185
public class ManagedAppStatusItemRequestBuilderGetQueryParameters
186186
{

0 commit comments

Comments
 (0)