Skip to content

Commit 07c34f9

Browse files
authored
Merge pull request #2199 from microsoftgraph/kiota/v1.0/pipelinebuild/128432
Generated models and request builders
2 parents dabd27c + a9921f7 commit 07c34f9

171 files changed

Lines changed: 3090 additions & 494 deletions

File tree

Some content is hidden

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

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project does adheres to [Semantic Versioning](https://semver.org/spec/v
77

88
## [Unreleased]
99

10+
## [5.34.0] - 2023-11-12
11+
12+
- Latest metadata updates from 11th November 2023.
13+
1014
## [5.33.0] - 2023-11-02
1115

1216
- Latest metadata updates from 31st October 2023.

src/Microsoft.Graph/Generated/Admin/People/PeopleRequestBuilder.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ public PeopleRequestBuilder(Dictionary<string, object> pathParameters, IRequestA
3434
public PeopleRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/people{?%24select,%24expand}", rawUrl) {
3535
}
3636
/// <summary>
37-
/// Get people from admin
37+
/// Retrieve the properties and relationships of a peopleAdminSettings object.
38+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/peopleadminsettings-get?view=graph-rest-1.0" />
3839
/// </summary>
3940
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
4041
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -74,7 +75,7 @@ public async Task<PeopleAdminSettings> PatchAsync(PeopleAdminSettings body, Acti
7475
return await RequestAdapter.SendAsync<PeopleAdminSettings>(requestInfo, PeopleAdminSettings.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
7576
}
7677
/// <summary>
77-
/// Get people from admin
78+
/// Retrieve the properties and relationships of a peopleAdminSettings object.
7879
/// </summary>
7980
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
8081
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -135,7 +136,7 @@ public PeopleRequestBuilder WithUrl(string rawUrl) {
135136
return new PeopleRequestBuilder(rawUrl, RequestAdapter);
136137
}
137138
/// <summary>
138-
/// Get people from admin
139+
/// Retrieve the properties and relationships of a peopleAdminSettings object.
139140
/// </summary>
140141
public class PeopleRequestBuilderGetQueryParameters {
141142
/// <summary>Expand related entities</summary>

src/Microsoft.Graph/Generated/Admin/People/ProfileCardProperties/Item/ProfileCardPropertyItemRequestBuilder.cs

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ public ProfileCardPropertyItemRequestBuilder(Dictionary<string, object> pathPara
2929
public ProfileCardPropertyItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/people/profileCardProperties/{profileCardProperty%2Did}{?%24select,%24expand}", rawUrl) {
3030
}
3131
/// <summary>
32-
/// Delete navigation property profileCardProperties for admin
32+
/// Delete the profileCardProperty object specified by its directoryPropertyName from the organization&apos;s profile card, and remove any localized customizations for that property.
33+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/profilecardproperty-delete?view=graph-rest-1.0" />
3334
/// </summary>
3435
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
3536
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -48,7 +49,8 @@ public async Task DeleteAsync(Action<ProfileCardPropertyItemRequestBuilderDelete
4849
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
4950
}
5051
/// <summary>
51-
/// Get profileCardProperties from admin
52+
/// Retrieve the properties of a profileCardProperty entity. The profileCardProperty is identified by its directoryPropertyName property.
53+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/profilecardproperty-get?view=graph-rest-1.0" />
5254
/// </summary>
5355
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
5456
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -67,7 +69,8 @@ public async Task<ProfileCardProperty> GetAsync(Action<ProfileCardPropertyItemRe
6769
return await RequestAdapter.SendAsync<ProfileCardProperty>(requestInfo, ProfileCardProperty.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
6870
}
6971
/// <summary>
70-
/// Update the navigation property profileCardProperties in admin
72+
/// Update the properties of a profileCardProperty object, identified by its directoryPropertyName property.
73+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/profilecardproperty-update?view=graph-rest-1.0" />
7174
/// </summary>
7275
/// <param name="body">The request body</param>
7376
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
@@ -88,7 +91,7 @@ public async Task<ProfileCardProperty> PatchAsync(ProfileCardProperty body, Acti
8891
return await RequestAdapter.SendAsync<ProfileCardProperty>(requestInfo, ProfileCardProperty.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
8992
}
9093
/// <summary>
91-
/// Delete navigation property profileCardProperties for admin
94+
/// Delete the profileCardProperty object specified by its directoryPropertyName from the organization&apos;s profile card, and remove any localized customizations for that property.
9295
/// </summary>
9396
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
9497
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -113,7 +116,7 @@ public RequestInformation ToDeleteRequestInformation(Action<ProfileCardPropertyI
113116
return requestInfo;
114117
}
115118
/// <summary>
116-
/// Get profileCardProperties from admin
119+
/// Retrieve the properties of a profileCardProperty entity. The profileCardProperty is identified by its directoryPropertyName property.
117120
/// </summary>
118121
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
119122
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -139,7 +142,7 @@ public RequestInformation ToGetRequestInformation(Action<ProfileCardPropertyItem
139142
return requestInfo;
140143
}
141144
/// <summary>
142-
/// Update the navigation property profileCardProperties in admin
145+
/// Update the properties of a profileCardProperty object, identified by its directoryPropertyName property.
143146
/// </summary>
144147
/// <param name="body">The request body</param>
145148
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -190,7 +193,7 @@ public ProfileCardPropertyItemRequestBuilderDeleteRequestConfiguration() {
190193
}
191194
}
192195
/// <summary>
193-
/// Get profileCardProperties from admin
196+
/// Retrieve the properties of a profileCardProperty entity. The profileCardProperty is identified by its directoryPropertyName property.
194197
/// </summary>
195198
public class ProfileCardPropertyItemRequestBuilderGetQueryParameters {
196199
/// <summary>Expand related entities</summary>

src/Microsoft.Graph/Generated/Admin/People/ProfileCardProperties/ProfileCardPropertiesRequestBuilder.cs

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ public ProfileCardPropertiesRequestBuilder(Dictionary<string, object> pathParame
4242
public ProfileCardPropertiesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/people/profileCardProperties{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
4343
}
4444
/// <summary>
45-
/// Get profileCardProperties from admin
45+
/// Get a collection of profileCardProperty resources for an organization. Each resource is identified by its directoryPropertyName property.
46+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/peopleadminsettings-list-profilecardproperties?view=graph-rest-1.0" />
4647
/// </summary>
4748
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
4849
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -61,7 +62,8 @@ public async Task<ProfileCardPropertyCollectionResponse> GetAsync(Action<Profile
6162
return await RequestAdapter.SendAsync<ProfileCardPropertyCollectionResponse>(requestInfo, ProfileCardPropertyCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
6263
}
6364
/// <summary>
64-
/// Create new navigation property to profileCardProperties for admin
65+
/// Create a new profileCardProperty for an organization. The new property is identified by its directoryPropertyName property. For more information about how to add properties to the profile card for an organization, see Add or remove custom attributes on a profile card using the profile card API.
66+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/peopleadminsettings-post-profilecardproperties?view=graph-rest-1.0" />
6567
/// </summary>
6668
/// <param name="body">The request body</param>
6769
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
@@ -82,7 +84,7 @@ public async Task<ProfileCardProperty> PostAsync(ProfileCardProperty body, Actio
8284
return await RequestAdapter.SendAsync<ProfileCardProperty>(requestInfo, ProfileCardProperty.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
8385
}
8486
/// <summary>
85-
/// Get profileCardProperties from admin
87+
/// Get a collection of profileCardProperty resources for an organization. Each resource is identified by its directoryPropertyName property.
8688
/// </summary>
8789
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
8890
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -108,7 +110,7 @@ public RequestInformation ToGetRequestInformation(Action<ProfileCardPropertiesRe
108110
return requestInfo;
109111
}
110112
/// <summary>
111-
/// Create new navigation property to profileCardProperties for admin
113+
/// Create a new profileCardProperty for an organization. The new property is identified by its directoryPropertyName property. For more information about how to add properties to the profile card for an organization, see Add or remove custom attributes on a profile card using the profile card API.
112114
/// </summary>
113115
/// <param name="body">The request body</param>
114116
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -143,7 +145,7 @@ public ProfileCardPropertiesRequestBuilder WithUrl(string rawUrl) {
143145
return new ProfileCardPropertiesRequestBuilder(rawUrl, RequestAdapter);
144146
}
145147
/// <summary>
146-
/// Get profileCardProperties from admin
148+
/// Get a collection of profileCardProperty resources for an organization. Each resource is identified by its directoryPropertyName property.
147149
/// </summary>
148150
public class ProfileCardPropertiesRequestBuilderGetQueryParameters {
149151
/// <summary>Include count of items</summary>

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ public async Task DeleteAsync(Action<ConversationMemberItemRequestBuilderDeleteR
4949
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
5050
}
5151
/// <summary>
52-
/// Retrieve a conversationMember from a chat. This API is available in the following national cloud deployments.
53-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0" />
52+
/// Retrieve a conversationMember from a chat or channel. This API is available in the following national cloud deployments.
53+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/conversationmember-get?view=graph-rest-1.0" />
5454
/// </summary>
5555
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
5656
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
@@ -115,7 +115,7 @@ public RequestInformation ToDeleteRequestInformation(Action<ConversationMemberIt
115115
return requestInfo;
116116
}
117117
/// <summary>
118-
/// Retrieve a conversationMember from a chat. This API is available in the following national cloud deployments.
118+
/// Retrieve a conversationMember from a chat or channel. This API is available in the following national cloud deployments.
119119
/// </summary>
120120
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
121121
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -192,7 +192,7 @@ public ConversationMemberItemRequestBuilderDeleteRequestConfiguration() {
192192
}
193193
}
194194
/// <summary>
195-
/// Retrieve a conversationMember from a chat. This API is available in the following national cloud deployments.
195+
/// Retrieve a conversationMember from a chat or channel. This API is available in the following national cloud deployments.
196196
/// </summary>
197197
public class ConversationMemberItemRequestBuilderGetQueryParameters {
198198
/// <summary>Expand related entities</summary>

src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ public async Task<ChatMessageCollectionResponse> GetAsync(Action<MessagesRequest
6767
return await RequestAdapter.SendAsync<ChatMessageCollectionResponse>(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
6868
}
6969
/// <summary>
70-
/// Send a new chatMessage in the specified channel or a chat. This API is available in the following national cloud deployments.
71-
/// Find more info here <see href="https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0" />
70+
/// Send a new chatMessage in the specified chat. This API can&apos;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. This API is available in the following national cloud deployments.
71+
/// Find more info here <see href="https://learn.microsoft.com/graph/api/chat-post-messages?view=graph-rest-1.0" />
7272
/// </summary>
7373
/// <param name="body">The request body</param>
7474
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
@@ -115,7 +115,7 @@ public RequestInformation ToGetRequestInformation(Action<MessagesRequestBuilderG
115115
return requestInfo;
116116
}
117117
/// <summary>
118-
/// Send a new chatMessage in the specified channel or a chat. This API is available in the following national cloud deployments.
118+
/// Send a new chatMessage in the specified chat. This API can&apos;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. This API is available in the following national cloud deployments.
119119
/// </summary>
120120
/// <param name="body">The request body</param>
121121
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>

src/Microsoft.Graph/Generated/Communications/OnlineMeetings/Item/OnlineMeetingItemRequestBuilder.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using Microsoft.Graph.Communications.OnlineMeetings.Item.AttendanceReports;
33
using Microsoft.Graph.Communications.OnlineMeetings.Item.AttendeeReport;
44
using Microsoft.Graph.Communications.OnlineMeetings.Item.GetVirtualAppointmentJoinWebUrl;
5+
using Microsoft.Graph.Communications.OnlineMeetings.Item.Recordings;
56
using Microsoft.Graph.Communications.OnlineMeetings.Item.Transcripts;
67
using Microsoft.Graph.Models.ODataErrors;
78
using Microsoft.Graph.Models;
@@ -30,6 +31,10 @@ public class OnlineMeetingItemRequestBuilder : BaseRequestBuilder {
3031
public GetVirtualAppointmentJoinWebUrlRequestBuilder GetVirtualAppointmentJoinWebUrl { get =>
3132
new GetVirtualAppointmentJoinWebUrlRequestBuilder(PathParameters, RequestAdapter);
3233
}
34+
/// <summary>Provides operations to manage the recordings property of the microsoft.graph.onlineMeeting entity.</summary>
35+
public RecordingsRequestBuilder Recordings { get =>
36+
new RecordingsRequestBuilder(PathParameters, RequestAdapter);
37+
}
3338
/// <summary>Provides operations to manage the transcripts property of the microsoft.graph.onlineMeeting entity.</summary>
3439
public TranscriptsRequestBuilder Transcripts { get =>
3540
new TranscriptsRequestBuilder(PathParameters, RequestAdapter);

0 commit comments

Comments
 (0)