diff --git a/.gitignore b/.gitignore
index 69adc5d7de5..bcccdf6e6da 100644
--- a/.gitignore
+++ b/.gitignore
@@ -36,3 +36,4 @@ UpgradeLog*.XML
UpgradeLog*.htm
.idea/
+*.log
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 31339361dc8..433fced545b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,11 @@ and this project does adheres to [Semantic Versioning](https://semver.org/spec/v
## [Unreleased]
+## [5.8.0] - 2023-04-27
+
+- Latest metadata updates from 25th April 2023
+- Drops orphaned collection models unnecessarily generated due to inheritance (https://github.com/microsoft/kiota/issues/2543)
+
## [5.7.0] - 2023-04-18
- Latest metadata updates from 18th April 2023
diff --git a/src/Microsoft.Graph/Generated/Models/ChangeNotification.cs b/src/Microsoft.Graph/Extensions/ChangeNotification.cs
similarity index 99%
rename from src/Microsoft.Graph/Generated/Models/ChangeNotification.cs
rename to src/Microsoft.Graph/Extensions/ChangeNotification.cs
index 538a82b285d..ce63a4f9318 100644
--- a/src/Microsoft.Graph/Generated/Models/ChangeNotification.cs
+++ b/src/Microsoft.Graph/Extensions/ChangeNotification.cs
@@ -1,4 +1,4 @@
-using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions.Serialization;
using Microsoft.Kiota.Abstractions.Store;
using System.Collections.Generic;
using System.IO;
diff --git a/src/Microsoft.Graph/Generated/Models/CommsNotification.cs b/src/Microsoft.Graph/Extensions/ChangeNotificationCollection.cs
similarity index 57%
rename from src/Microsoft.Graph/Generated/Models/CommsNotification.cs
rename to src/Microsoft.Graph/Extensions/ChangeNotificationCollection.cs
index d4017545848..00a3eb00642 100644
--- a/src/Microsoft.Graph/Generated/Models/CommsNotification.cs
+++ b/src/Microsoft.Graph/Extensions/ChangeNotificationCollection.cs
@@ -1,22 +1,50 @@
-using Microsoft.Kiota.Abstractions.Serialization;
-using Microsoft.Kiota.Abstractions.Store;
+using Microsoft.Kiota.Abstractions.Serialization;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System;
+using Microsoft.Kiota.Abstractions.Store;
+
namespace Microsoft.Graph.Models {
- public class CommsNotification : IAdditionalDataHolder, IBackedModel, IParsable {
+ public class ChangeNotificationCollection : IAdditionalDataHolder,IBackedModel, IParsable {
+ /// Stores model information.
+ public IBackingStore BackingStore { get; private set; }
/// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
public IDictionary AdditionalData {
get { return BackingStore?.Get>("additionalData"); }
set { BackingStore?.Set("additionalData", value); }
}
- /// Stores model information.
- public IBackingStore BackingStore { get; private set; }
- /// The changeType property
- public Microsoft.Graph.Models.ChangeType? ChangeType {
- get { return BackingStore?.Get("changeType"); }
- set { BackingStore?.Set("changeType", value); }
+ /// The value property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? Value {
+ get { return BackingStore?.Get?>("value"); }
+ set { BackingStore?.Set("value", value); }
+ }
+#nullable restore
+#else
+ public List Value {
+ get { return BackingStore?.Get>("value"); }
+ set { BackingStore?.Set("value", value); }
+ }
+#endif
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// The parse node to use to read the discriminator value and create the object
+ public static ChangeNotificationCollection CreateFromDiscriminatorValue(IParseNode parseNode) {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new ChangeNotificationCollection();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ public IDictionary> GetFieldDeserializers() {
+ return new Dictionary>() {
+ {"@odata.type", n => { OdataType = n.GetStringValue(); } },
+ {"validationTokens", n => { ValidationTokens = n.GetCollectionOfPrimitiveValues()?.ToList(); } },
+ {"value", n => { Value = n.GetCollectionOfObjectValues(ChangeNotification.CreateFromDiscriminatorValue)?.ToList(); } },
+ };
}
/// The OdataType property
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -32,54 +60,29 @@ public string OdataType {
set { BackingStore?.Set("@odata.type", value); }
}
#endif
- /// URI of the resource that was changed.
+ /// The stopTones property
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
- public string? ResourceUrl {
- get { return BackingStore?.Get("resourceUrl"); }
- set { BackingStore?.Set("resourceUrl", value); }
+ public List? ValidationTokens {
+ get { return BackingStore?.Get?>("validationTokens"); }
+ set { BackingStore?.Set("validationTokens", value); }
}
#nullable restore
#else
- public string ResourceUrl {
- get { return BackingStore?.Get("resourceUrl"); }
- set { BackingStore?.Set("resourceUrl", value); }
+ public List ValidationTokens {
+ get { return BackingStore?.Get>("validationTokens"); }
+ set { BackingStore?.Set("validationTokens", value); }
}
#endif
- ///
- /// Instantiates a new commsNotification and sets the default values.
- ///
- public CommsNotification() {
- BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore();
- AdditionalData = new Dictionary();
- }
- ///
- /// Creates a new instance of the appropriate class based on discriminator value
- ///
- /// The parse node to use to read the discriminator value and create the object
- public static CommsNotification CreateFromDiscriminatorValue(IParseNode parseNode) {
- _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
- return new CommsNotification();
- }
- ///
- /// The deserialization information for the current model
- ///
- public IDictionary> GetFieldDeserializers() {
- return new Dictionary> {
- {"changeType", n => { ChangeType = n.GetEnumValue(); } },
- {"@odata.type", n => { OdataType = n.GetStringValue(); } },
- {"resourceUrl", n => { ResourceUrl = n.GetStringValue(); } },
- };
- }
///
/// Serializes information the current object
///
/// Serialization writer to use to serialize this model
public void Serialize(ISerializationWriter writer) {
_ = writer ?? throw new ArgumentNullException(nameof(writer));
- writer.WriteEnumValue("changeType", ChangeType);
writer.WriteStringValue("@odata.type", OdataType);
- writer.WriteStringValue("resourceUrl", ResourceUrl);
+ writer.WriteCollectionOfObjectValues("value", Value);
+ writer.WriteCollectionOfPrimitiveValues("value", ValidationTokens);
writer.WriteAdditionalData(AdditionalData);
}
}
diff --git a/src/Microsoft.Graph/Generated/Models/ChangeNotificationCollectionResponse.cs b/src/Microsoft.Graph/Extensions/ChangeNotificationCollectionResponse.cs
similarity index 97%
rename from src/Microsoft.Graph/Generated/Models/ChangeNotificationCollectionResponse.cs
rename to src/Microsoft.Graph/Extensions/ChangeNotificationCollectionResponse.cs
index f64f7db102d..e8c67b315c3 100644
--- a/src/Microsoft.Graph/Generated/Models/ChangeNotificationCollectionResponse.cs
+++ b/src/Microsoft.Graph/Extensions/ChangeNotificationCollectionResponse.cs
@@ -1,4 +1,4 @@
-using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions.Serialization;
using System.Collections.Generic;
using System.IO;
using System.Linq;
diff --git a/src/Microsoft.Graph/Generated/Models/ChangeNotificationEncryptedContent.cs b/src/Microsoft.Graph/Extensions/ChangeNotificationEncryptedContent.cs
similarity index 99%
rename from src/Microsoft.Graph/Generated/Models/ChangeNotificationEncryptedContent.cs
rename to src/Microsoft.Graph/Extensions/ChangeNotificationEncryptedContent.cs
index be7f28cdf65..17eeae402eb 100644
--- a/src/Microsoft.Graph/Generated/Models/ChangeNotificationEncryptedContent.cs
+++ b/src/Microsoft.Graph/Extensions/ChangeNotificationEncryptedContent.cs
@@ -1,4 +1,4 @@
-using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions.Serialization;
using Microsoft.Kiota.Abstractions.Store;
using System.Collections.Generic;
using System.IO;
diff --git a/src/Microsoft.Graph/Generated/Models/ChangeType.cs b/src/Microsoft.Graph/Extensions/ChangeType.cs
similarity index 86%
rename from src/Microsoft.Graph/Generated/Models/ChangeType.cs
rename to src/Microsoft.Graph/Extensions/ChangeType.cs
index c70fc16a3e2..ba3cd4e0410 100644
--- a/src/Microsoft.Graph/Generated/Models/ChangeType.cs
+++ b/src/Microsoft.Graph/Extensions/ChangeType.cs
@@ -1,4 +1,4 @@
-using System.Runtime.Serialization;
+using System.Runtime.Serialization;
using System;
namespace Microsoft.Graph.Models {
public enum ChangeType {
diff --git a/src/Microsoft.Graph/Generated/Models/LifecycleEventType.cs b/src/Microsoft.Graph/Extensions/LifeCycleEventType.cs
similarity index 89%
rename from src/Microsoft.Graph/Generated/Models/LifecycleEventType.cs
rename to src/Microsoft.Graph/Extensions/LifeCycleEventType.cs
index 5ac4d3e9109..2347e47674b 100644
--- a/src/Microsoft.Graph/Generated/Models/LifecycleEventType.cs
+++ b/src/Microsoft.Graph/Extensions/LifeCycleEventType.cs
@@ -1,4 +1,4 @@
-using System.Runtime.Serialization;
+using System.Runtime.Serialization;
using System;
namespace Microsoft.Graph.Models {
public enum LifecycleEventType {
diff --git a/src/Microsoft.Graph/Generated/Models/ResourceData.cs b/src/Microsoft.Graph/Extensions/ResourceData.cs
similarity index 98%
rename from src/Microsoft.Graph/Generated/Models/ResourceData.cs
rename to src/Microsoft.Graph/Extensions/ResourceData.cs
index 25293259892..793c2002532 100644
--- a/src/Microsoft.Graph/Generated/Models/ResourceData.cs
+++ b/src/Microsoft.Graph/Extensions/ResourceData.cs
@@ -1,4 +1,4 @@
-using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions.Serialization;
using Microsoft.Kiota.Abstractions.Store;
using System.Collections.Generic;
using System.IO;
diff --git a/src/Microsoft.Graph/Generated/Models/ResourcePermission.cs b/src/Microsoft.Graph/Extensions/ResourcePermission.cs
similarity index 98%
rename from src/Microsoft.Graph/Generated/Models/ResourcePermission.cs
rename to src/Microsoft.Graph/Extensions/ResourcePermission.cs
index d695ff98eb7..40517e33872 100644
--- a/src/Microsoft.Graph/Generated/Models/ResourcePermission.cs
+++ b/src/Microsoft.Graph/Extensions/ResourcePermission.cs
@@ -1,4 +1,4 @@
-using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions.Serialization;
using Microsoft.Kiota.Abstractions.Store;
using System.Collections.Generic;
using System.IO;
diff --git a/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/Publish/PublishRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/Publish/PublishRequestBuilder.cs
index c41285730a8..abbe2ef1774 100644
--- a/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/Publish/PublishRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/Publish/PublishRequestBuilder.cs
@@ -28,8 +28,7 @@ public PublishRequestBuilder(Dictionary pathParameters, IRequest
public PublishRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}/publish", rawUrl) {
}
///
- /// Publish the specified browserSiteList for devices to download.
- /// Find more info here
+ /// Invoke action publish
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -50,7 +49,7 @@ public async Task PostAsync(PublishPostRequestBody body, Action
return await RequestAdapter.SendAsync(requestInfo, BrowserSiteList.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Publish the specified browserSiteList for devices to download.
+ /// Invoke action publish
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/SharedCookies/SharedCookiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/SharedCookies/SharedCookiesRequestBuilder.cs
index e58ae5b14ba..988d8e3ee25 100644
--- a/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/SharedCookies/SharedCookiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/SharedCookies/SharedCookiesRequestBuilder.cs
@@ -40,8 +40,7 @@ public SharedCookiesRequestBuilder(Dictionary pathParameters, IR
public SharedCookiesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}/sharedCookies{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Get a list of the browserSharedCookie objects and their properties.
- /// Find more info here
+ /// A collection of shared cookies defined for the site list.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -60,8 +59,7 @@ public async Task GetAsync(Action(requestInfo, BrowserSharedCookieCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create a new browserSharedCookie object in a browserSiteList.
- /// Find more info here
+ /// Create new navigation property to sharedCookies for admin
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -82,7 +80,7 @@ public async Task PostAsync(BrowserSharedCookie body, Actio
return await RequestAdapter.SendAsync(requestInfo, BrowserSharedCookie.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Get a list of the browserSharedCookie objects and their properties.
+ /// A collection of shared cookies defined for the site list.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -108,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new browserSharedCookie object in a browserSiteList.
+ /// Create new navigation property to sharedCookies for admin
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -136,7 +134,7 @@ public RequestInformation ToPostRequestInformation(BrowserSharedCookie body, Act
return requestInfo;
}
///
- /// Get a list of the browserSharedCookie objects and their properties.
+ /// A collection of shared cookies defined for the site list.
///
public class SharedCookiesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/Sites/SitesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/Sites/SitesRequestBuilder.cs
index e5bae089f8c..3b89ca6c7b2 100644
--- a/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/Sites/SitesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/Sites/SitesRequestBuilder.cs
@@ -40,8 +40,7 @@ public SitesRequestBuilder(Dictionary pathParameters, IRequestAd
public SitesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}/sites{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Get a list of the browserSite objects and their properties.
- /// Find more info here
+ /// A collection of sites defined for the site list.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -60,8 +59,7 @@ public async Task GetAsync(Action(requestInfo, BrowserSiteCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create a new browserSite object in a browserSiteList.
- /// Find more info here
+ /// Create new navigation property to sites for admin
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -82,7 +80,7 @@ public async Task PostAsync(BrowserSite body, Action(requestInfo, BrowserSite.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Get a list of the browserSite objects and their properties.
+ /// A collection of sites defined for the site list.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -108,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new browserSite object in a browserSiteList.
+ /// Create new navigation property to sites for admin
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -136,7 +134,7 @@ public RequestInformation ToPostRequestInformation(BrowserSite body, Action
- /// Get a list of the browserSite objects and their properties.
+ /// A collection of sites defined for the site list.
///
public class SitesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/SiteListsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/SiteListsRequestBuilder.cs
index a722878ba4e..53c1b50f780 100644
--- a/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/SiteListsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/SiteListsRequestBuilder.cs
@@ -40,8 +40,7 @@ public SiteListsRequestBuilder(Dictionary pathParameters, IReque
public SiteListsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Get a list of the browserSiteList objects and their properties.
- /// Find more info here
+ /// A collection of site lists to support Internet Explorer mode.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -60,8 +59,7 @@ public async Task GetAsync(Action(requestInfo, BrowserSiteListCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create a new browserSiteList object to support Internet Explorer mode.
- /// Find more info here
+ /// Create new navigation property to siteLists for admin
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -82,7 +80,7 @@ public async Task PostAsync(BrowserSiteList body, Action(requestInfo, BrowserSiteList.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Get a list of the browserSiteList objects and their properties.
+ /// A collection of site lists to support Internet Explorer mode.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -108,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new browserSiteList object to support Internet Explorer mode.
+ /// Create new navigation property to siteLists for admin
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -136,7 +134,7 @@ public RequestInformation ToPostRequestInformation(BrowserSiteList body, Action<
return requestInfo;
}
///
- /// Get a list of the browserSiteList objects and their properties.
+ /// A collection of site lists to support Internet Explorer mode.
///
public class SiteListsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/HealthOverviews/HealthOverviewsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/HealthOverviews/HealthOverviewsRequestBuilder.cs
index 6c131086853..92db4b2fd8b 100644
--- a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/HealthOverviews/HealthOverviewsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/HealthOverviews/HealthOverviewsRequestBuilder.cs
@@ -40,8 +40,7 @@ public HealthOverviewsRequestBuilder(Dictionary pathParameters,
public HealthOverviewsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/healthOverviews{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve the serviceHealth resources from the **healthOverviews** navigation property. This operation provides the health report of all subscribed services for a tenant.
- /// Find more info here
+ /// A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -81,7 +80,7 @@ public async Task PostAsync(ServiceHealth body, Action(requestInfo, ServiceHealth.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve the serviceHealth resources from the **healthOverviews** navigation property. This operation provides the health report of all subscribed services for a tenant.
+ /// A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -135,7 +134,7 @@ public RequestInformation ToPostRequestInformation(ServiceHealth body, Action
- /// Retrieve the serviceHealth resources from the **healthOverviews** navigation property. This operation provides the health report of all subscribed services for a tenant.
+ /// A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly.
///
public class HealthOverviewsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Issues/IssuesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Issues/IssuesRequestBuilder.cs
index c80e0e7968e..ddff0d36db9 100644
--- a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Issues/IssuesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Issues/IssuesRequestBuilder.cs
@@ -40,8 +40,7 @@ public IssuesRequestBuilder(Dictionary pathParameters, IRequestA
public IssuesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/issues{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve serviceHealthIssue resources from the **issues** navigation property. This operation retrieves information about all service health issues that exist for the tenant.
- /// Find more info here
+ /// A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -81,7 +80,7 @@ public async Task PostAsync(ServiceHealthIssue body, Action<
return await RequestAdapter.SendAsync(requestInfo, ServiceHealthIssue.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve serviceHealthIssue resources from the **issues** navigation property. This operation retrieves information about all service health issues that exist for the tenant.
+ /// A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -135,7 +134,7 @@ public RequestInformation ToPostRequestInformation(ServiceHealthIssue body, Acti
return requestInfo;
}
///
- /// Retrieve serviceHealthIssue resources from the **issues** navigation property. This operation retrieves information about all service health issues that exist for the tenant.
+ /// A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly.
///
public class IssuesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Archive/ArchiveRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Archive/ArchiveRequestBuilder.cs
index 84c1dddca70..e9bbb163d98 100644
--- a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Archive/ArchiveRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Archive/ArchiveRequestBuilder.cs
@@ -27,8 +27,7 @@ public ArchiveRequestBuilder(Dictionary pathParameters, IRequest
public ArchiveRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/messages/archive", rawUrl) {
}
///
- /// Archive a list of serviceUpdateMessages for the signed in user.
- /// Find more info here
+ /// Invoke action archive
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(ArchivePostRequestBody body, Action
return await RequestAdapter.SendAsync(requestInfo, ArchiveResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Archive a list of serviceUpdateMessages for the signed in user.
+ /// Invoke action archive
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Favorite/FavoriteRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Favorite/FavoriteRequestBuilder.cs
index 8b4fde9f62d..0132446a8ab 100644
--- a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Favorite/FavoriteRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Favorite/FavoriteRequestBuilder.cs
@@ -27,8 +27,7 @@ public FavoriteRequestBuilder(Dictionary pathParameters, IReques
public FavoriteRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/messages/favorite", rawUrl) {
}
///
- /// Change the status of a list of serviceUpdateMessages to favorite for the signed in user.
- /// Find more info here
+ /// Invoke action favorite
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(FavoritePostRequestBody body, Acti
return await RequestAdapter.SendAsync(requestInfo, FavoriteResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Change the status of a list of serviceUpdateMessages to favorite for the signed in user.
+ /// Invoke action favorite
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Item/Attachments/AttachmentsRequestBuilder.cs
index 99c16ff19be..106cbdeb3eb 100644
--- a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Item/Attachments/AttachmentsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Item/Attachments/AttachmentsRequestBuilder.cs
@@ -40,8 +40,7 @@ public AttachmentsRequestBuilder(Dictionary pathParameters, IReq
public AttachmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/messages/{serviceUpdateMessage%2Did}/attachments{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Get the list of attachments associated with a service message.
- /// Find more info here
+ /// A collection of serviceAnnouncementAttachments.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -81,7 +80,7 @@ public async Task PostAsync(ServiceAnnouncementAt
return await RequestAdapter.SendAsync(requestInfo, ServiceAnnouncementAttachment.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Get the list of attachments associated with a service message.
+ /// A collection of serviceAnnouncementAttachments.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -135,7 +134,7 @@ public RequestInformation ToPostRequestInformation(ServiceAnnouncementAttachment
return requestInfo;
}
///
- /// Get the list of attachments associated with a service message.
+ /// A collection of serviceAnnouncementAttachments.
///
public class AttachmentsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Item/Attachments/Item/Content/ContentRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Item/Attachments/Item/Content/ContentRequestBuilder.cs
index 33cefe5931b..e44614509eb 100644
--- a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Item/Attachments/Item/Content/ContentRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Item/Attachments/Item/Content/ContentRequestBuilder.cs
@@ -29,7 +29,6 @@ public ContentRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : ba
}
///
/// The attachment content.
- /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Item/AttachmentsArchive/AttachmentsArchiveRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Item/AttachmentsArchive/AttachmentsArchiveRequestBuilder.cs
index 8524a9120b9..da78a277e75 100644
--- a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Item/AttachmentsArchive/AttachmentsArchiveRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Item/AttachmentsArchive/AttachmentsArchiveRequestBuilder.cs
@@ -28,7 +28,6 @@ public AttachmentsArchiveRequestBuilder(string rawUrl, IRequestAdapter requestAd
}
///
/// The zip file that contains all attachments for a message.
- /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/MarkRead/MarkReadRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/MarkRead/MarkReadRequestBuilder.cs
index 4b2e26e3a2d..ad2d4038836 100644
--- a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/MarkRead/MarkReadRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/MarkRead/MarkReadRequestBuilder.cs
@@ -27,8 +27,7 @@ public MarkReadRequestBuilder(Dictionary pathParameters, IReques
public MarkReadRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/messages/markRead", rawUrl) {
}
///
- /// Mark a list of serviceUpdateMessages as **read** for the signed in user.
- /// Find more info here
+ /// Invoke action markRead
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(MarkReadPostRequestBody body, Acti
return await RequestAdapter.SendAsync(requestInfo, MarkReadResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Mark a list of serviceUpdateMessages as **read** for the signed in user.
+ /// Invoke action markRead
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/MarkUnread/MarkUnreadRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/MarkUnread/MarkUnreadRequestBuilder.cs
index ccc80294f82..4a387ea3b75 100644
--- a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/MarkUnread/MarkUnreadRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/MarkUnread/MarkUnreadRequestBuilder.cs
@@ -27,8 +27,7 @@ public MarkUnreadRequestBuilder(Dictionary pathParameters, IRequ
public MarkUnreadRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/messages/markUnread", rawUrl) {
}
///
- /// Mark a list of serviceUpdateMessages as **unread** for the signed in user.
- /// Find more info here
+ /// Invoke action markUnread
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(MarkUnreadPostRequestBody body,
return await RequestAdapter.SendAsync(requestInfo, MarkUnreadResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Mark a list of serviceUpdateMessages as **unread** for the signed in user.
+ /// Invoke action markUnread
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/MessagesRequestBuilder.cs
index 8d7decebeaf..31c7a882330 100644
--- a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/MessagesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/MessagesRequestBuilder.cs
@@ -70,8 +70,7 @@ public MessagesRequestBuilder(Dictionary pathParameters, IReques
public MessagesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/messages{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve the serviceUpdateMessage resources from the **messages** navigation property. This operation retrieves all service update messages that exist for the tenant.
- /// Find more info here
+ /// A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -111,7 +110,7 @@ public async Task PostAsync(ServiceUpdateMessage body, Act
return await RequestAdapter.SendAsync(requestInfo, ServiceUpdateMessage.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve the serviceUpdateMessage resources from the **messages** navigation property. This operation retrieves all service update messages that exist for the tenant.
+ /// A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -165,7 +164,7 @@ public RequestInformation ToPostRequestInformation(ServiceUpdateMessage body, Ac
return requestInfo;
}
///
- /// Retrieve the serviceUpdateMessage resources from the **messages** navigation property. This operation retrieves all service update messages that exist for the tenant.
+ /// A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly.
///
public class MessagesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Unarchive/UnarchiveRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Unarchive/UnarchiveRequestBuilder.cs
index 63f32189cec..f5fa6497f5d 100644
--- a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Unarchive/UnarchiveRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Unarchive/UnarchiveRequestBuilder.cs
@@ -27,8 +27,7 @@ public UnarchiveRequestBuilder(Dictionary pathParameters, IReque
public UnarchiveRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/messages/unarchive", rawUrl) {
}
///
- /// Unarchive a list of serviceUpdateMessages for the signed in user.
- /// Find more info here
+ /// Invoke action unarchive
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(UnarchivePostRequestBody body, Ac
return await RequestAdapter.SendAsync(requestInfo, UnarchiveResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Unarchive a list of serviceUpdateMessages for the signed in user.
+ /// Invoke action unarchive
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Unfavorite/UnfavoriteRequestBuilder.cs b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Unfavorite/UnfavoriteRequestBuilder.cs
index 8551c65a265..0c1f2ecf8a9 100644
--- a/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Unfavorite/UnfavoriteRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/Messages/Unfavorite/UnfavoriteRequestBuilder.cs
@@ -27,8 +27,7 @@ public UnfavoriteRequestBuilder(Dictionary pathParameters, IRequ
public UnfavoriteRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/messages/unfavorite", rawUrl) {
}
///
- /// Remove the favorite status of serviceUpdateMessages for the signed in user.
- /// Find more info here
+ /// Invoke action unfavorite
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(UnfavoritePostRequestBody body,
return await RequestAdapter.SendAsync(requestInfo, UnfavoriteResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Remove the favorite status of serviceUpdateMessages for the signed in user.
+ /// Invoke action unfavorite
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Agreements/Item/Acceptances/AcceptancesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Agreements/Item/Acceptances/AcceptancesRequestBuilder.cs
index b57402395d4..e833e289878 100644
--- a/src/Microsoft.Graph/Generated/Agreements/Item/Acceptances/AcceptancesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Agreements/Item/Acceptances/AcceptancesRequestBuilder.cs
@@ -40,8 +40,7 @@ public AcceptancesRequestBuilder(Dictionary pathParameters, IReq
public AcceptancesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/agreements/{agreement%2Did}/acceptances{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Get the details about the acceptance records for a specific agreement.
- /// Find more info here
+ /// Read-only. Information about acceptances of this agreement.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -81,7 +80,7 @@ public async Task PostAsync(AgreementAcceptance body, Actio
return await RequestAdapter.SendAsync(requestInfo, AgreementAcceptance.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Get the details about the acceptance records for a specific agreement.
+ /// Read-only. Information about acceptances of this agreement.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -135,7 +134,7 @@ public RequestInformation ToPostRequestInformation(AgreementAcceptance body, Act
return requestInfo;
}
///
- /// Get the details about the acceptance records for a specific agreement.
+ /// Read-only. Information about acceptances of this agreement.
///
public class AcceptancesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Agreements/Item/FileNamespace/FileRequestBuilder.cs b/src/Microsoft.Graph/Generated/Agreements/Item/FileNamespace/FileRequestBuilder.cs
index e09caf89972..00b0429d9d8 100644
--- a/src/Microsoft.Graph/Generated/Agreements/Item/FileNamespace/FileRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Agreements/Item/FileNamespace/FileRequestBuilder.cs
@@ -52,8 +52,7 @@ public async Task DeleteAsync(Action
- /// Retrieve the details of the default file for an agreement, including the language and version information. The file information is specified through the agreementFile object.
- /// Find more info here
+ /// Default PDF linked to this agreement.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -117,7 +116,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Retrieve the details of the default file for an agreement, including the language and version information. The file information is specified through the agreementFile object.
+ /// Default PDF linked to this agreement.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -187,7 +186,7 @@ public FileRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Retrieve the details of the default file for an agreement, including the language and version information. The file information is specified through the agreementFile object.
+ /// Default PDF linked to this agreement.
///
public class FileRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/Agreements/Item/Files/FilesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Agreements/Item/Files/FilesRequestBuilder.cs
index 505b7188c1d..8b6a6c965f3 100644
--- a/src/Microsoft.Graph/Generated/Agreements/Item/Files/FilesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Agreements/Item/Files/FilesRequestBuilder.cs
@@ -59,8 +59,7 @@ public async Task GetAsync(Action(requestInfo, AgreementFileLocalizationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create a new localized agreement file.
- /// Find more info here
+ /// Create new navigation property to files for agreements
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -107,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new localized agreement file.
+ /// Create new navigation property to files for agreements
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/AppCatalogs/TeamsApps/Item/AppDefinitions/AppDefinitionsRequestBuilder.cs b/src/Microsoft.Graph/Generated/AppCatalogs/TeamsApps/Item/AppDefinitions/AppDefinitionsRequestBuilder.cs
index 4f048155cc0..161515d1157 100644
--- a/src/Microsoft.Graph/Generated/AppCatalogs/TeamsApps/Item/AppDefinitions/AppDefinitionsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/AppCatalogs/TeamsApps/Item/AppDefinitions/AppDefinitionsRequestBuilder.cs
@@ -59,8 +59,7 @@ public async Task GetAsync(Action(requestInfo, TeamsAppDefinitionCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Update an app previously published to the Microsoft Teams app catalog. To update an app, the **distributionMethod** property for the app must be set to `organization`. This API specifically updates an app published to your organization's app catalog (the tenant app catalog).
- /// Find more info here
+ /// Create new navigation property to appDefinitions for appCatalogs
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -107,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update an app previously published to the Microsoft Teams app catalog. To update an app, the **distributionMethod** property for the app must be set to `organization`. This API specifically updates an app published to your organization's app catalog (the tenant app catalog).
+ /// Create new navigation property to appDefinitions for appCatalogs
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/AppCatalogs/TeamsApps/Item/AppDefinitions/Item/Bot/BotRequestBuilder.cs b/src/Microsoft.Graph/Generated/AppCatalogs/TeamsApps/Item/AppDefinitions/Item/Bot/BotRequestBuilder.cs
index 04ab6eed446..d083d32989e 100644
--- a/src/Microsoft.Graph/Generated/AppCatalogs/TeamsApps/Item/AppDefinitions/Item/Bot/BotRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/AppCatalogs/TeamsApps/Item/AppDefinitions/Item/Bot/BotRequestBuilder.cs
@@ -47,8 +47,7 @@ public async Task DeleteAsync(Action
- /// Get the bot associated with a specific definition of the TeamsApp.
- /// Find more info here
+ /// The details of the bot specified in the Teams app manifest.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -112,7 +111,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Get the bot associated with a specific definition of the TeamsApp.
+ /// The details of the bot specified in the Teams app manifest.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -182,7 +181,7 @@ public BotRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Get the bot associated with a specific definition of the TeamsApp.
+ /// The details of the bot specified in the Teams app manifest.
///
public class BotRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/AppCatalogs/TeamsApps/TeamsAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/AppCatalogs/TeamsApps/TeamsAppsRequestBuilder.cs
index 3e62d03e419..cd6390519a7 100644
--- a/src/Microsoft.Graph/Generated/AppCatalogs/TeamsApps/TeamsAppsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/AppCatalogs/TeamsApps/TeamsAppsRequestBuilder.cs
@@ -40,8 +40,7 @@ public TeamsAppsRequestBuilder(Dictionary pathParameters, IReque
public TeamsAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/appCatalogs/teamsApps{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List apps from the Microsoft Teams app catalog.This includes apps from the Microsoft Teams store, as well as apps from your organization's app catalog (the tenant app catalog). To get apps from your organization's app catalog only, specify `organization` as the **distributionMethod** in the request.
- /// Find more info here
+ /// Get teamsApps from appCatalogs
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -60,8 +59,7 @@ public async Task GetAsync(Action(requestInfo, TeamsAppCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Publish an app to the Microsoft Teams apps catalog.Specifically, this API publishes the app to your organization's catalog (the tenant app catalog);the created resource will have a **distributionMethod** property value of `organization`. The **requiresReview** property allows any user to submit an app for review by an administrator. Admins can approve or reject these apps via this API or the Microsoft Teams admin center.
- /// Find more info here
+ /// Create new navigation property to teamsApps for appCatalogs
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -82,7 +80,7 @@ public async Task GetAsync(Action(requestInfo, Microsoft.Graph.Models.TeamsApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List apps from the Microsoft Teams app catalog.This includes apps from the Microsoft Teams store, as well as apps from your organization's app catalog (the tenant app catalog). To get apps from your organization's app catalog only, specify `organization` as the **distributionMethod** in the request.
+ /// Get teamsApps from appCatalogs
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -108,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Publish an app to the Microsoft Teams apps catalog.Specifically, this API publishes the app to your organization's catalog (the tenant app catalog);the created resource will have a **distributionMethod** property value of `organization`. The **requiresReview** property allows any user to submit an app for review by an administrator. Admins can approve or reject these apps via this API or the Microsoft Teams admin center.
+ /// Create new navigation property to teamsApps for appCatalogs
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -136,7 +134,7 @@ public RequestInformation ToPostRequestInformation(Microsoft.Graph.Models.TeamsA
return requestInfo;
}
///
- /// List apps from the Microsoft Teams app catalog.This includes apps from the Microsoft Teams store, as well as apps from your organization's app catalog (the tenant app catalog). To get apps from your organization's app catalog only, specify `organization` as the **distributionMethod** in the request.
+ /// Get teamsApps from appCatalogs
///
public class TeamsAppsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/ApplicationTemplates/Item/Instantiate/InstantiateRequestBuilder.cs b/src/Microsoft.Graph/Generated/ApplicationTemplates/Item/Instantiate/InstantiateRequestBuilder.cs
index 0dcb0cd2d25..5067faaf6e8 100644
--- a/src/Microsoft.Graph/Generated/ApplicationTemplates/Item/Instantiate/InstantiateRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/ApplicationTemplates/Item/Instantiate/InstantiateRequestBuilder.cs
@@ -28,8 +28,7 @@ public InstantiateRequestBuilder(Dictionary pathParameters, IReq
public InstantiateRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applicationTemplates/{applicationTemplate%2Did}/instantiate", rawUrl) {
}
///
- /// Add an instance of an application from the Azure AD application gallery into your directory. You can also use this API to instantiate non-gallery apps. Use the following ID for the **applicationTemplate** object: `8adf8e6e-67b2-4cf2-a259-e3dc5476c621`.
- /// Find more info here
+ /// Invoke action instantiate
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -50,7 +49,7 @@ public async Task PostAsync(InstantiatePostRequestB
return await RequestAdapter.SendAsync(requestInfo, ApplicationServicePrincipal.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Add an instance of an application from the Azure AD application gallery into your directory. You can also use this API to instantiate non-gallery apps. Use the following ID for the **applicationTemplate** object: `8adf8e6e-67b2-4cf2-a259-e3dc5476c621`.
+ /// Invoke action instantiate
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Applications/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
index 66b9cdf0336..15378e32067 100644
--- a/src/Microsoft.Graph/Generated/Applications/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
@@ -27,8 +27,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(Dictionary
public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/getAvailableExtensionProperties", rawUrl) {
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:+ user+ group+ administrativeUnit+ application+ device+ organization
- /// Find more info here
+ /// Invoke action getAvailableExtensionProperties
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(GetAvailabl
return await RequestAdapter.SendAsync(requestInfo, GetAvailableExtensionPropertiesResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:+ user+ group+ administrativeUnit+ application+ device+ organization
+ /// Invoke action getAvailableExtensionProperties
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Applications/GetByIds/GetByIdsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/GetByIds/GetByIdsRequestBuilder.cs
index 11142dd7d77..ba08520d3d6 100644
--- a/src/Microsoft.Graph/Generated/Applications/GetByIds/GetByIdsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/GetByIds/GetByIdsRequestBuilder.cs
@@ -27,8 +27,7 @@ public GetByIdsRequestBuilder(Dictionary pathParameters, IReques
public GetByIdsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/getByIds", rawUrl) {
}
///
- /// Return the directory objects specified in a list of IDs. Some common uses for this function are to:
- /// Find more info here
+ /// Invoke action getByIds
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(GetByIdsPostRequestBody body, Acti
return await RequestAdapter.SendAsync(requestInfo, GetByIdsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return the directory objects specified in a list of IDs. Some common uses for this function are to:
+ /// Invoke action getByIds
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/AddKey/AddKeyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/AddKey/AddKeyRequestBuilder.cs
index 3d7ab16bff0..3e548fc87ec 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/AddKey/AddKeyRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/AddKey/AddKeyRequestBuilder.cs
@@ -28,8 +28,7 @@ public AddKeyRequestBuilder(Dictionary pathParameters, IRequestA
public AddKeyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/addKey", rawUrl) {
}
///
- /// Add a key credential to an application. This method, along with removeKey can be used by an application to automate rolling its expiring keys. As part of the request validation for this method, a proof of possession of an existing key is verified before the action can be performed. Applications that don’t have any existing valid certificates (no certificates have been added yet, or all certificates have expired), won’t be able to use this service action. You can use the Update application operation to perform an update instead.
- /// Find more info here
+ /// Invoke action addKey
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -50,7 +49,7 @@ public async Task PostAsync(AddKeyPostRequestBody body, Action(requestInfo, KeyCredential.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Add a key credential to an application. This method, along with removeKey can be used by an application to automate rolling its expiring keys. As part of the request validation for this method, a proof of possession of an existing key is verified before the action can be performed. Applications that don’t have any existing valid certificates (no certificates have been added yet, or all certificates have expired), won’t be able to use this service action. You can use the Update application operation to perform an update instead.
+ /// Invoke action addKey
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/AddPassword/AddPasswordRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/AddPassword/AddPasswordRequestBuilder.cs
index 8bf60ef83aa..14a124070ce 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/AddPassword/AddPasswordRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/AddPassword/AddPasswordRequestBuilder.cs
@@ -28,8 +28,7 @@ public AddPasswordRequestBuilder(Dictionary pathParameters, IReq
public AddPasswordRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/addPassword", rawUrl) {
}
///
- /// Adds a strong password or secret to an application.
- /// Find more info here
+ /// Invoke action addPassword
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -50,7 +49,7 @@ public async Task PostAsync(AddPasswordPostRequestBody body,
return await RequestAdapter.SendAsync(requestInfo, PasswordCredential.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Adds a strong password or secret to an application.
+ /// Invoke action addPassword
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/CheckMemberGroups/CheckMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/CheckMemberGroups/CheckMemberGroupsRequestBuilder.cs
index 2849261bbbb..b9eff7f2114 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/CheckMemberGroups/CheckMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/CheckMemberGroups/CheckMemberGroupsRequestBuilder.cs
@@ -27,8 +27,7 @@ public CheckMemberGroupsRequestBuilder(Dictionary pathParameters
public CheckMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/checkMemberGroups", rawUrl) {
}
///
- /// Check for membership in a specified list of group IDs, and return from that list those groups (identified by IDs) of which the specified user, group, service principal, organizational contact, device, or directory object is a member. This function is transitive. You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Azure AD. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct.
- /// Find more info here
+ /// Invoke action checkMemberGroups
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(CheckMemberGroupsPostRequ
return await RequestAdapter.SendAsync(requestInfo, CheckMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Check for membership in a specified list of group IDs, and return from that list those groups (identified by IDs) of which the specified user, group, service principal, organizational contact, device, or directory object is a member. This function is transitive. You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Azure AD. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct.
+ /// Invoke action checkMemberGroups
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/ExtensionProperties/ExtensionPropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/ExtensionProperties/ExtensionPropertiesRequestBuilder.cs
index e1055f02118..9b78a0f0c67 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/ExtensionProperties/ExtensionPropertiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/ExtensionProperties/ExtensionPropertiesRequestBuilder.cs
@@ -40,8 +40,7 @@ public ExtensionPropertiesRequestBuilder(Dictionary pathParamete
public ExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/extensionProperties{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve the list of directory extension definitions, represented by extensionProperty objects on an application.
- /// Find more info here
+ /// Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0).
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -60,8 +59,7 @@ public async Task GetAsync(Action(requestInfo, ExtensionPropertyCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create a new directory extension definition, represented by an extensionProperty object.
- /// Find more info here
+ /// Create new navigation property to extensionProperties for applications
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -82,7 +80,7 @@ public async Task PostAsync(ExtensionProperty body, Action(requestInfo, ExtensionProperty.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve the list of directory extension definitions, represented by extensionProperty objects on an application.
+ /// Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0).
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -108,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new directory extension definition, represented by an extensionProperty object.
+ /// Create new navigation property to extensionProperties for applications
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -136,7 +134,7 @@ public RequestInformation ToPostRequestInformation(ExtensionProperty body, Actio
return requestInfo;
}
///
- /// Retrieve the list of directory extension definitions, represented by extensionProperty objects on an application.
+ /// Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0).
///
public class ExtensionPropertiesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/FederatedIdentityCredentials/FederatedIdentityCredentialsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/FederatedIdentityCredentials/FederatedIdentityCredentialsRequestBuilder.cs
index d4dceb28249..dc20628efe7 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/FederatedIdentityCredentials/FederatedIdentityCredentialsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/FederatedIdentityCredentials/FederatedIdentityCredentialsRequestBuilder.cs
@@ -40,8 +40,7 @@ public FederatedIdentityCredentialsRequestBuilder(Dictionary pat
public FederatedIdentityCredentialsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/federatedIdentityCredentials{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Get a list of the federatedIdentityCredential objects and their properties.
- /// Find more info here
+ /// Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0).
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -60,8 +59,7 @@ public async Task GetAsync(Action
return await RequestAdapter.SendAsync(requestInfo, FederatedIdentityCredentialCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create a new federatedIdentityCredential object for an application. By configuring a trust relationship between your Azure AD application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application.
- /// Find more info here
+ /// Create new navigation property to federatedIdentityCredentials for applications
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -82,7 +80,7 @@ public async Task PostAsync(FederatedIdentityCreden
return await RequestAdapter.SendAsync(requestInfo, FederatedIdentityCredential.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Get a list of the federatedIdentityCredential objects and their properties.
+ /// Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0).
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -108,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new federatedIdentityCredential object for an application. By configuring a trust relationship between your Azure AD application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application.
+ /// Create new navigation property to federatedIdentityCredentials for applications
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -136,7 +134,7 @@ public RequestInformation ToPostRequestInformation(FederatedIdentityCredential b
return requestInfo;
}
///
- /// Get a list of the federatedIdentityCredential objects and their properties.
+ /// Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0).
///
public class FederatedIdentityCredentialsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index cc9c72818c5..1938ac585e1 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -27,8 +27,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
- /// Find more info here
+ /// Invoke action getMemberGroups
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Invoke action getMemberGroups
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/GetMemberObjects/GetMemberObjectsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/GetMemberObjects/GetMemberObjectsRequestBuilder.cs
index b66abb27d4b..8554d35a495 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/GetMemberObjects/GetMemberObjectsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/GetMemberObjects/GetMemberObjectsRequestBuilder.cs
@@ -27,8 +27,7 @@ public GetMemberObjectsRequestBuilder(Dictionary pathParameters,
public GetMemberObjectsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/getMemberObjects", rawUrl) {
}
///
- /// Return all IDs for the groups, administrative units, and directory roles that a user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. **Note:** Only users and role-enabled groups can be members of directory roles.
- /// Find more info here
+ /// Invoke action getMemberObjects
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(GetMemberObjectsPostReques
return await RequestAdapter.SendAsync(requestInfo, GetMemberObjectsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all IDs for the groups, administrative units, and directory roles that a user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. **Note:** Only users and role-enabled groups can be members of directory roles.
+ /// Invoke action getMemberObjects
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/Owners/OwnersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/Owners/OwnersRequestBuilder.cs
index 6f6114ded11..fc1b37f8af1 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/Owners/OwnersRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/Owners/OwnersRequestBuilder.cs
@@ -66,7 +66,6 @@ public OwnersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas
}
///
/// Directory objects that are owners of the application. Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
- /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/Owners/Ref/RefRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/Owners/Ref/RefRequestBuilder.cs
index 525653f92eb..f9752c391d8 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/Owners/Ref/RefRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/Owners/Ref/RefRequestBuilder.cs
@@ -29,7 +29,6 @@ public RefRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(r
}
///
/// Directory objects that are owners of the application. Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
- /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/RemoveKey/RemoveKeyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/RemoveKey/RemoveKeyRequestBuilder.cs
index 1bb9db318eb..aab510c1618 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/RemoveKey/RemoveKeyRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/RemoveKey/RemoveKeyRequestBuilder.cs
@@ -27,8 +27,7 @@ public RemoveKeyRequestBuilder(Dictionary pathParameters, IReque
public RemoveKeyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/removeKey", rawUrl) {
}
///
- /// Remove a key credential from an application. This method along with addKey can be used by an application to automate rolling its expiring keys. As part of the request validation for this method, a proof of possession of an existing key is verified before the action can be performed.
- /// Find more info here
+ /// Invoke action removeKey
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(RemoveKeyPostRequestBody body, Action
- /// Remove a key credential from an application. This method along with addKey can be used by an application to automate rolling its expiring keys. As part of the request validation for this method, a proof of possession of an existing key is verified before the action can be performed.
+ /// Invoke action removeKey
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/RemovePassword/RemovePasswordRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/RemovePassword/RemovePasswordRequestBuilder.cs
index b06e8f03c1b..77cb7226f28 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/RemovePassword/RemovePasswordRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/RemovePassword/RemovePasswordRequestBuilder.cs
@@ -27,8 +27,7 @@ public RemovePasswordRequestBuilder(Dictionary pathParameters, I
public RemovePasswordRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/removePassword", rawUrl) {
}
///
- /// Remove a password from an application.
- /// Find more info here
+ /// Invoke action removePassword
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(RemovePasswordPostRequestBody body, Action
- /// Remove a password from an application.
+ /// Invoke action removePassword
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/Restore/RestoreRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/Restore/RestoreRequestBuilder.cs
index 609507c83bf..21f2c3cc51a 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/Restore/RestoreRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/Restore/RestoreRequestBuilder.cs
@@ -28,8 +28,7 @@ public RestoreRequestBuilder(Dictionary pathParameters, IRequest
public RestoreRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/restore", rawUrl) {
}
///
- /// Restore a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. If an item was accidentally deleted, you can fully restore the item. This is not applicable to security groups, which are deleted permanently. A recently deleted item will remain available for up to 30 days. After 30 days, the item is permanently deleted.
- /// Find more info here
+ /// Invoke action restore
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -48,7 +47,7 @@ public async Task PostAsync(Action(requestInfo, DirectoryObject.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Restore a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. If an item was accidentally deleted, you can fully restore the item. This is not applicable to security groups, which are deleted permanently. A recently deleted item will remain available for up to 30 days. After 30 days, the item is permanently deleted.
+ /// Invoke action restore
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/SetVerifiedPublisher/SetVerifiedPublisherRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/SetVerifiedPublisher/SetVerifiedPublisherRequestBuilder.cs
index ee435e8a9cc..4161215cd16 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/SetVerifiedPublisher/SetVerifiedPublisherRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/SetVerifiedPublisher/SetVerifiedPublisherRequestBuilder.cs
@@ -27,8 +27,7 @@ public SetVerifiedPublisherRequestBuilder(Dictionary pathParamet
public SetVerifiedPublisherRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/setVerifiedPublisher", rawUrl) {
}
///
- /// Set the verifiedPublisher on an application. For more information, including prerequisites to setting a verified publisher, see Publisher verification.
- /// Find more info here
+ /// Invoke action setVerifiedPublisher
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(SetVerifiedPublisherPostRequestBody body, Action
- /// Set the verifiedPublisher on an application. For more information, including prerequisites to setting a verified publisher, see Publisher verification.
+ /// Invoke action setVerifiedPublisher
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/TokenIssuancePolicies/Ref/RefRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/TokenIssuancePolicies/Ref/RefRequestBuilder.cs
index 00b5022302e..c893687a1da 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/TokenIssuancePolicies/Ref/RefRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/TokenIssuancePolicies/Ref/RefRequestBuilder.cs
@@ -28,8 +28,7 @@ public RefRequestBuilder(Dictionary pathParameters, IRequestAdap
public RefRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/tokenIssuancePolicies/$ref{?%24top,%24skip,%24search,%24filter,%24count,%24orderby}", rawUrl) {
}
///
- /// List the tokenIssuancePolicy objects that are assigned to an application.
- /// Find more info here
+ /// Get ref of tokenIssuancePolicies from applications
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -69,7 +68,7 @@ public async Task PostAsync(ReferenceCreate body, Action
- /// List the tokenIssuancePolicy objects that are assigned to an application.
+ /// Get ref of tokenIssuancePolicies from applications
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -122,7 +121,7 @@ public RequestInformation ToPostRequestInformation(ReferenceCreate body, Action<
return requestInfo;
}
///
- /// List the tokenIssuancePolicy objects that are assigned to an application.
+ /// Get ref of tokenIssuancePolicies from applications
///
public class RefRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/TokenIssuancePolicies/TokenIssuancePoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/TokenIssuancePolicies/TokenIssuancePoliciesRequestBuilder.cs
index 270eaf5d867..9214e084ccd 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/TokenIssuancePolicies/TokenIssuancePoliciesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/TokenIssuancePolicies/TokenIssuancePoliciesRequestBuilder.cs
@@ -45,8 +45,7 @@ public TokenIssuancePoliciesRequestBuilder(Dictionary pathParame
public TokenIssuancePoliciesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/tokenIssuancePolicies{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List the tokenIssuancePolicy objects that are assigned to an application.
- /// Find more info here
+ /// Get tokenIssuancePolicies from applications
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -65,7 +64,7 @@ public async Task GetAsync(Action(requestInfo, TokenIssuancePolicyCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List the tokenIssuancePolicy objects that are assigned to an application.
+ /// Get tokenIssuancePolicies from applications
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -91,7 +90,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// List the tokenIssuancePolicy objects that are assigned to an application.
+ /// Get tokenIssuancePolicies from applications
///
public class TokenIssuancePoliciesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/TokenLifetimePolicies/Ref/RefRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/TokenLifetimePolicies/Ref/RefRequestBuilder.cs
index cc9ea3c9665..327848d188c 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/TokenLifetimePolicies/Ref/RefRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/TokenLifetimePolicies/Ref/RefRequestBuilder.cs
@@ -28,8 +28,7 @@ public RefRequestBuilder(Dictionary pathParameters, IRequestAdap
public RefRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/tokenLifetimePolicies/$ref{?%24top,%24skip,%24search,%24filter,%24count,%24orderby}", rawUrl) {
}
///
- /// List the tokenLifetimePolicy objects that are assigned to an application.
- /// Find more info here
+ /// Get ref of tokenLifetimePolicies from applications
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -69,7 +68,7 @@ public async Task PostAsync(ReferenceCreate body, Action
- /// List the tokenLifetimePolicy objects that are assigned to an application.
+ /// Get ref of tokenLifetimePolicies from applications
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -122,7 +121,7 @@ public RequestInformation ToPostRequestInformation(ReferenceCreate body, Action<
return requestInfo;
}
///
- /// List the tokenLifetimePolicy objects that are assigned to an application.
+ /// Get ref of tokenLifetimePolicies from applications
///
public class RefRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/TokenLifetimePolicies/TokenLifetimePoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/TokenLifetimePolicies/TokenLifetimePoliciesRequestBuilder.cs
index a2db2a18aba..e6f1a96d95e 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/TokenLifetimePolicies/TokenLifetimePoliciesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/TokenLifetimePolicies/TokenLifetimePoliciesRequestBuilder.cs
@@ -45,8 +45,7 @@ public TokenLifetimePoliciesRequestBuilder(Dictionary pathParame
public TokenLifetimePoliciesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/tokenLifetimePolicies{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List the tokenLifetimePolicy objects that are assigned to an application.
- /// Find more info here
+ /// Get tokenLifetimePolicies from applications
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -65,7 +64,7 @@ public async Task GetAsync(Action(requestInfo, TokenLifetimePolicyCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List the tokenLifetimePolicy objects that are assigned to an application.
+ /// Get tokenLifetimePolicies from applications
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -91,7 +90,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// List the tokenLifetimePolicy objects that are assigned to an application.
+ /// Get tokenLifetimePolicies from applications
///
public class TokenLifetimePoliciesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/UnsetVerifiedPublisher/UnsetVerifiedPublisherRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/UnsetVerifiedPublisher/UnsetVerifiedPublisherRequestBuilder.cs
index 0e5440e4010..b8a29ec1355 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/UnsetVerifiedPublisher/UnsetVerifiedPublisherRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/UnsetVerifiedPublisher/UnsetVerifiedPublisherRequestBuilder.cs
@@ -27,8 +27,7 @@ public UnsetVerifiedPublisherRequestBuilder(Dictionary pathParam
public UnsetVerifiedPublisherRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/unsetVerifiedPublisher", rawUrl) {
}
///
- /// Unset the verifiedPublisher previously set on an application, removing all verified publisher properties. For more information, see Publisher verification.
- /// Find more info here
+ /// Invoke action unsetVerifiedPublisher
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -47,7 +46,7 @@ public async Task PostAsync(Action
- /// Unset the verifiedPublisher previously set on an application, removing all verified publisher properties. For more information, see Publisher verification.
+ /// Invoke action unsetVerifiedPublisher
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
diff --git a/src/Microsoft.Graph/Generated/Applications/ValidateProperties/ValidatePropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/ValidateProperties/ValidatePropertiesRequestBuilder.cs
index d85afa95423..82e71c6f266 100644
--- a/src/Microsoft.Graph/Generated/Applications/ValidateProperties/ValidatePropertiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/ValidateProperties/ValidatePropertiesRequestBuilder.cs
@@ -27,8 +27,7 @@ public ValidatePropertiesRequestBuilder(Dictionary pathParameter
public ValidatePropertiesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/validateProperties", rawUrl) {
}
///
- /// Validate that a Microsoft 365 group's display name or mail nickname complies with naming policies. Clients can use this API to determine whether a display name or mail nickname is valid before trying to create a Microsoft 365 group. To validate the properties of an existing group, use the group: validateProperties function. The following policy validations are performed for the display name and mail nickname properties:1. Validate the prefix and suffix naming policy2. Validate the custom banned words policy3. Validate that the mail nickname is unique This API only returns the first validation failure that is encountered. If the properties fail multiple validations, only the first validation failure is returned. However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you are only validating the prefix and suffix naming policy. To learn more about configuring naming policies, see Configure naming policy.
- /// Find more info here
+ /// Invoke action validateProperties
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(ValidatePropertiesPostRequestBody body, Action
- /// Validate that a Microsoft 365 group's display name or mail nickname complies with naming policies. Clients can use this API to determine whether a display name or mail nickname is valid before trying to create a Microsoft 365 group. To validate the properties of an existing group, use the group: validateProperties function. The following policy validations are performed for the display name and mail nickname properties:1. Validate the prefix and suffix naming policy2. Validate the custom banned words policy3. Validate that the mail nickname is unique This API only returns the first validation failure that is encountered. If the properties fail multiple validations, only the first validation failure is returned. However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you are only validating the prefix and suffix naming policy. To learn more about configuring naming policies, see Configure naming policy.
+ /// Invoke action validateProperties
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/AuditLogs/DirectoryAudits/DirectoryAuditsRequestBuilder.cs b/src/Microsoft.Graph/Generated/AuditLogs/DirectoryAudits/DirectoryAuditsRequestBuilder.cs
index b687d3f6acf..2a9d2fedfa3 100644
--- a/src/Microsoft.Graph/Generated/AuditLogs/DirectoryAudits/DirectoryAuditsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/AuditLogs/DirectoryAudits/DirectoryAuditsRequestBuilder.cs
@@ -40,8 +40,7 @@ public DirectoryAuditsRequestBuilder(Dictionary pathParameters,
public DirectoryAuditsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/auditLogs/directoryAudits{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Get the list of audit logs generated by Azure Active Directory (Azure AD). This includes audit logs generated by various services within Azure AD, including user, app, device and group Management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), and self- service group management, and so on.
- /// Find more info here
+ /// Get directoryAudits from auditLogs
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -81,7 +80,7 @@ public async Task PostAsync(DirectoryAudit body, Action(requestInfo, DirectoryAudit.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Get the list of audit logs generated by Azure Active Directory (Azure AD). This includes audit logs generated by various services within Azure AD, including user, app, device and group Management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), and self- service group management, and so on.
+ /// Get directoryAudits from auditLogs
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -135,7 +134,7 @@ public RequestInformation ToPostRequestInformation(DirectoryAudit body, Action
- /// Get the list of audit logs generated by Azure Active Directory (Azure AD). This includes audit logs generated by various services within Azure AD, including user, app, device and group Management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), and self- service group management, and so on.
+ /// Get directoryAudits from auditLogs
///
public class DirectoryAuditsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/AuditLogs/Provisioning/ProvisioningRequestBuilder.cs b/src/Microsoft.Graph/Generated/AuditLogs/Provisioning/ProvisioningRequestBuilder.cs
index fc915d234c0..069e5fb930f 100644
--- a/src/Microsoft.Graph/Generated/AuditLogs/Provisioning/ProvisioningRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/AuditLogs/Provisioning/ProvisioningRequestBuilder.cs
@@ -40,8 +40,7 @@ public ProvisioningRequestBuilder(Dictionary pathParameters, IRe
public ProvisioningRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/auditLogs/provisioning{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Get all provisioning events that occurred in your tenant, such as the deletion of a group in a target application or the creation of a user when provisioning user accounts from your HR system.
- /// Find more info here
+ /// Get provisioning from auditLogs
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -81,7 +80,7 @@ public async Task PostAsync(ProvisioningObjectSummary
return await RequestAdapter.SendAsync(requestInfo, ProvisioningObjectSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Get all provisioning events that occurred in your tenant, such as the deletion of a group in a target application or the creation of a user when provisioning user accounts from your HR system.
+ /// Get provisioning from auditLogs
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -135,7 +134,7 @@ public RequestInformation ToPostRequestInformation(ProvisioningObjectSummary bod
return requestInfo;
}
///
- /// Get all provisioning events that occurred in your tenant, such as the deletion of a group in a target application or the creation of a user when provisioning user accounts from your HR system.
+ /// Get provisioning from auditLogs
///
public class ProvisioningRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/AuditLogs/SignIns/SignInsRequestBuilder.cs b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/SignInsRequestBuilder.cs
index 483024f8cb0..b6da8c6bb8d 100644
--- a/src/Microsoft.Graph/Generated/AuditLogs/SignIns/SignInsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/SignInsRequestBuilder.cs
@@ -40,8 +40,7 @@ public SignInsRequestBuilder(Dictionary pathParameters, IRequest
public SignInsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/auditLogs/signIns{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve the Azure AD user sign-ins for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. The maximum and default page size is 1,000 objects and by default, the most recent sign-ins are returned first. Only sign-in events that occurred within the Azure Active Directory (Azure AD) default retention period are available.
- /// Find more info here
+ /// Get signIns from auditLogs
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -81,7 +80,7 @@ public async Task PostAsync(SignIn body, Action(requestInfo, SignIn.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve the Azure AD user sign-ins for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. The maximum and default page size is 1,000 objects and by default, the most recent sign-ins are returned first. Only sign-in events that occurred within the Azure Active Directory (Azure AD) default retention period are available.
+ /// Get signIns from auditLogs
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -135,7 +134,7 @@ public RequestInformation ToPostRequestInformation(SignIn body, Action
- /// Retrieve the Azure AD user sign-ins for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. The maximum and default page size is 1,000 objects and by default, the most recent sign-ins are returned first. Only sign-in events that occurred within the Azure Active Directory (Azure AD) default retention period are available.
+ /// Get signIns from auditLogs
///
public class SignInsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Branding/Localizations/Item/BackgroundImage/BackgroundImageRequestBuilder.cs b/src/Microsoft.Graph/Generated/Branding/Localizations/Item/BackgroundImage/BackgroundImageRequestBuilder.cs
index 02c124f9c32..8e80fc5d161 100644
--- a/src/Microsoft.Graph/Generated/Branding/Localizations/Item/BackgroundImage/BackgroundImageRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Branding/Localizations/Item/BackgroundImage/BackgroundImageRequestBuilder.cs
@@ -28,7 +28,6 @@ public BackgroundImageRequestBuilder(string rawUrl, IRequestAdapter requestAdapt
}
///
/// Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster.
- /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Branding/Localizations/Item/BannerLogo/BannerLogoRequestBuilder.cs b/src/Microsoft.Graph/Generated/Branding/Localizations/Item/BannerLogo/BannerLogoRequestBuilder.cs
index 611909990d5..92098cbf8a8 100644
--- a/src/Microsoft.Graph/Generated/Branding/Localizations/Item/BannerLogo/BannerLogoRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Branding/Localizations/Item/BannerLogo/BannerLogoRequestBuilder.cs
@@ -28,7 +28,6 @@ public BannerLogoRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
}
///
/// A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
- /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Branding/Localizations/Item/SquareLogo/SquareLogoRequestBuilder.cs b/src/Microsoft.Graph/Generated/Branding/Localizations/Item/SquareLogo/SquareLogoRequestBuilder.cs
index bd5b89ee253..8a659aa596e 100644
--- a/src/Microsoft.Graph/Generated/Branding/Localizations/Item/SquareLogo/SquareLogoRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Branding/Localizations/Item/SquareLogo/SquareLogoRequestBuilder.cs
@@ -28,7 +28,6 @@ public SquareLogoRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
}
///
/// A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo.
- /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Branding/Localizations/LocalizationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Branding/Localizations/LocalizationsRequestBuilder.cs
index 6d2729e15a1..19677fe2d71 100644
--- a/src/Microsoft.Graph/Generated/Branding/Localizations/LocalizationsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Branding/Localizations/LocalizationsRequestBuilder.cs
@@ -40,8 +40,7 @@ public LocalizationsRequestBuilder(Dictionary pathParameters, IR
public LocalizationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/branding/localizations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve all localization branding objects, including the default branding.
- /// Find more info here
+ /// Add different branding based on a locale.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -60,8 +59,7 @@ public async Task GetAsync
return await RequestAdapter.SendAsync(requestInfo, OrganizationalBrandingLocalizationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create a new organizationalBrandingLocalization object. This creates a localized branding and at the same time, the default branding if it doesn't exist. The default branding is created only once. It's loaded when a localized branding isn't configured for the user's browser language. To retrieve the default branding, see Get branding.
- /// Find more info here
+ /// Create new navigation property to localizations for branding
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -82,7 +80,7 @@ public async Task PostAsync(OrganizationalBr
return await RequestAdapter.SendAsync(requestInfo, OrganizationalBrandingLocalization.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve all localization branding objects, including the default branding.
+ /// Add different branding based on a locale.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -108,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new organizationalBrandingLocalization object. This creates a localized branding and at the same time, the default branding if it doesn't exist. The default branding is created only once. It's loaded when a localized branding isn't configured for the user's browser language. To retrieve the default branding, see Get branding.
+ /// Create new navigation property to localizations for branding
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -136,7 +134,7 @@ public RequestInformation ToPostRequestInformation(OrganizationalBrandingLocaliz
return requestInfo;
}
///
- /// Retrieve all localization branding objects, including the default branding.
+ /// Add different branding based on a locale.
///
public class LocalizationsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/HideForUser/HideForUserRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/HideForUser/HideForUserRequestBuilder.cs
index b56ca718c02..954276ec0bf 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/HideForUser/HideForUserRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/HideForUser/HideForUserRequestBuilder.cs
@@ -27,8 +27,7 @@ public HideForUserRequestBuilder(Dictionary pathParameters, IReq
public HideForUserRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/hideForUser", rawUrl) {
}
///
- /// Hide a chat for a user.
- /// Find more info here
+ /// Invoke action hideForUser
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(HideForUserPostRequestBody body, Action
- /// Hide a chat for a user.
+ /// Invoke action hideForUser
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/InstalledApps/InstalledAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/InstalledApps/InstalledAppsRequestBuilder.cs
index 34e88c8ef8c..5bacf6eb6b3 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/InstalledApps/InstalledAppsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/InstalledApps/InstalledAppsRequestBuilder.cs
@@ -40,8 +40,7 @@ public InstalledAppsRequestBuilder(Dictionary pathParameters, IR
public InstalledAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/installedApps{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List all app installations within a chat.
- /// Find more info here
+ /// A collection of all the apps in the chat. Nullable.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -60,8 +59,7 @@ public async Task GetAsync(Action(requestInfo, TeamsAppInstallationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Install a teamsApp to the specified chat.
- /// Find more info here
+ /// Create new navigation property to installedApps for chats
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -82,7 +80,7 @@ public async Task PostAsync(TeamsAppInstallation body, Act
return await RequestAdapter.SendAsync(requestInfo, TeamsAppInstallation.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List all app installations within a chat.
+ /// A collection of all the apps in the chat. Nullable.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -108,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Install a teamsApp to the specified chat.
+ /// Create new navigation property to installedApps for chats
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -136,7 +134,7 @@ public RequestInformation ToPostRequestInformation(TeamsAppInstallation body, Ac
return requestInfo;
}
///
- /// List all app installations within a chat.
+ /// A collection of all the apps in the chat. Nullable.
///
public class InstalledAppsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/InstalledApps/Item/Upgrade/UpgradeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/InstalledApps/Item/Upgrade/UpgradeRequestBuilder.cs
index 1557cc4715e..554d0c36ee5 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/InstalledApps/Item/Upgrade/UpgradeRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/InstalledApps/Item/Upgrade/UpgradeRequestBuilder.cs
@@ -27,8 +27,7 @@ public UpgradeRequestBuilder(Dictionary pathParameters, IRequest
public UpgradeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/installedApps/{teamsAppInstallation%2Did}/upgrade", rawUrl) {
}
///
- /// Upgrade an app installation within a chat.
- /// Find more info here
+ /// Invoke action upgrade
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -47,7 +46,7 @@ public async Task PostAsync(Action
- /// Upgrade an app installation within a chat.
+ /// Invoke action upgrade
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/MarkChatReadForUser/MarkChatReadForUserRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/MarkChatReadForUser/MarkChatReadForUserRequestBuilder.cs
index 87ce2ba9655..7b54e687764 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/MarkChatReadForUser/MarkChatReadForUserRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/MarkChatReadForUser/MarkChatReadForUserRequestBuilder.cs
@@ -27,8 +27,7 @@ public MarkChatReadForUserRequestBuilder(Dictionary pathParamete
public MarkChatReadForUserRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/markChatReadForUser", rawUrl) {
}
///
- /// Mark a chat as read for a user.
- /// Find more info here
+ /// Invoke action markChatReadForUser
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(MarkChatReadForUserPostRequestBody body, Action
- /// Mark a chat as read for a user.
+ /// Invoke action markChatReadForUser
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/MarkChatUnreadForUser/MarkChatUnreadForUserRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/MarkChatUnreadForUser/MarkChatUnreadForUserRequestBuilder.cs
index 673ac32ccba..bbe9ef36e1c 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/MarkChatUnreadForUser/MarkChatUnreadForUserRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/MarkChatUnreadForUser/MarkChatUnreadForUserRequestBuilder.cs
@@ -27,8 +27,7 @@ public MarkChatUnreadForUserRequestBuilder(Dictionary pathParame
public MarkChatUnreadForUserRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/markChatUnreadForUser", rawUrl) {
}
///
- /// Mark a chat as unread for a user.
- /// Find more info here
+ /// Invoke action markChatUnreadForUser
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(MarkChatUnreadForUserPostRequestBody body, Action
- /// Mark a chat as unread for a user.
+ /// Invoke action markChatUnreadForUser
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Members/Add/AddRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Members/Add/AddRequestBuilder.cs
index c08963cdfe4..e640568c7db 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Members/Add/AddRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Members/Add/AddRequestBuilder.cs
@@ -27,8 +27,7 @@ public AddRequestBuilder(Dictionary pathParameters, IRequestAdap
public AddRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/members/add", rawUrl) {
}
///
- /// Add multiple members in a single request to a team. The response provides details about which memberships could and couldn't be created.
- /// Find more info here
+ /// Invoke action add
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(AddPostRequestBody body, Action(requestInfo, AddResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Add multiple members in a single request to a team. The response provides details about which memberships could and couldn't be created.
+ /// Invoke action add
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Members/MembersRequestBuilder.cs
index fcbe350ccbc..6b6c2a1983a 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Members/MembersRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Members/MembersRequestBuilder.cs
@@ -45,8 +45,7 @@ public MembersRequestBuilder(Dictionary pathParameters, IRequest
public MembersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/members{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List all conversation members in a chat. This method supports federation. For one-on-one chats, at least one chat member must belong to the tenant the request initiates from. For group chats, the chat must be initiated by a user in the tenant the request initiates from.
- /// Find more info here
+ /// A collection of all the members in the chat. Nullable.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -65,8 +64,7 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Add a conversationMember to a chat.
- /// Find more info here
+ /// Create new navigation property to members for chats
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -87,7 +85,7 @@ public async Task PostAsync(ConversationMember body, Action<
return await RequestAdapter.SendAsync(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List all conversation members in a chat. This method supports federation. For one-on-one chats, at least one chat member must belong to the tenant the request initiates from. For group chats, the chat must be initiated by a user in the tenant the request initiates from.
+ /// A collection of all the members in the chat. Nullable.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -113,7 +111,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Add a conversationMember to a chat.
+ /// Create new navigation property to members for chats
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -141,7 +139,7 @@ public RequestInformation ToPostRequestInformation(ConversationMember body, Acti
return requestInfo;
}
///
- /// List all conversation members in a chat. This method supports federation. For one-on-one chats, at least one chat member must belong to the tenant the request initiates from. For group chats, the chat must be initiated by a user in the tenant the request initiates from.
+ /// A collection of all the members in the chat. Nullable.
///
public class MembersRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/HostedContents/HostedContentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/HostedContents/HostedContentsRequestBuilder.cs
index a84f5a64d47..28e1c716bdd 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/HostedContents/HostedContentsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/HostedContents/HostedContentsRequestBuilder.cs
@@ -40,8 +40,7 @@ public HostedContentsRequestBuilder(Dictionary pathParameters, I
public HostedContentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/messages/{chatMessage%2Did}/hostedContents{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content
- /// Find more info here
+ /// Content in a message hosted by Microsoft Teams - for example, images or code snippets.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -81,7 +80,7 @@ public async Task PostAsync(ChatMessageHostedContent b
return await RequestAdapter.SendAsync(requestInfo, ChatMessageHostedContent.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content
+ /// Content in a message hosted by Microsoft Teams - for example, images or code snippets.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -135,7 +134,7 @@ public RequestInformation ToPostRequestInformation(ChatMessageHostedContent body
return requestInfo;
}
///
- /// Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content
+ /// Content in a message hosted by Microsoft Teams - for example, images or code snippets.
///
public class HostedContentsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/HostedContents/Item/Value/ContentRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/HostedContents/Item/Value/ContentRequestBuilder.cs
index c579b4bd714..3bd2903b44b 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/HostedContents/Item/Value/ContentRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/HostedContents/Item/Value/ContentRequestBuilder.cs
@@ -28,7 +28,6 @@ public ContentRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : ba
}
///
/// Get media content for the navigation property hostedContents from chats
- /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/Item/HostedContents/HostedContentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/Item/HostedContents/HostedContentsRequestBuilder.cs
index 4e6c4e71cc8..de3e06c371f 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/Item/HostedContents/HostedContentsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/Item/HostedContents/HostedContentsRequestBuilder.cs
@@ -40,8 +40,7 @@ public HostedContentsRequestBuilder(Dictionary pathParameters, I
public HostedContentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/messages/{chatMessage%2Did}/replies/{chatMessage%2Did1}/hostedContents{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content
- /// Find more info here
+ /// Content in a message hosted by Microsoft Teams - for example, images or code snippets.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -81,7 +80,7 @@ public async Task PostAsync(ChatMessageHostedContent b
return await RequestAdapter.SendAsync(requestInfo, ChatMessageHostedContent.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content
+ /// Content in a message hosted by Microsoft Teams - for example, images or code snippets.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -135,7 +134,7 @@ public RequestInformation ToPostRequestInformation(ChatMessageHostedContent body
return requestInfo;
}
///
- /// Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content
+ /// Content in a message hosted by Microsoft Teams - for example, images or code snippets.
///
public class HostedContentsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/Item/HostedContents/Item/Value/ContentRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/Item/HostedContents/Item/Value/ContentRequestBuilder.cs
index 7492f13036b..66762888167 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/Item/HostedContents/Item/Value/ContentRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/Item/HostedContents/Item/Value/ContentRequestBuilder.cs
@@ -28,7 +28,6 @@ public ContentRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : ba
}
///
/// Get media content for the navigation property hostedContents from chats
- /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs
index 7a42f5bd1c2..df1489f81bd 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs
@@ -45,8 +45,7 @@ public RepliesRequestBuilder(Dictionary pathParameters, IRequest
public RepliesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/messages/{chatMessage%2Did}/replies{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, simply call get channel message.
- /// Find more info here
+ /// Replies for a specified message. Supports $expand for channel messages.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -65,8 +64,7 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create a new reply to a chatMessage in a specified channel.
- /// Find more info here
+ /// Create new navigation property to replies for chats
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -87,7 +85,7 @@ public async Task PostAsync(ChatMessage body, Action(requestInfo, ChatMessage.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, simply call get channel message.
+ /// Replies for a specified message. Supports $expand for channel messages.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -113,7 +111,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new reply to a chatMessage in a specified channel.
+ /// Create new navigation property to replies for chats
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -141,7 +139,7 @@ public RequestInformation ToPostRequestInformation(ChatMessage body, Action
- /// List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, simply call get channel message.
+ /// Replies for a specified message. Supports $expand for channel messages.
///
public class RepliesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs
index ebb8e2f76bf..38eeccb0292 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs
@@ -45,8 +45,7 @@ public MessagesRequestBuilder(Dictionary pathParameters, IReques
public MessagesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/messages{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the **tenantId** property on the channel).
- /// Find more info here
+ /// A collection of all the messages in the chat. Nullable.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -65,8 +64,7 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// 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.
- /// Find more info here
+ /// Create new navigation property to messages for chats
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -87,7 +85,7 @@ public async Task PostAsync(ChatMessage body, Action(requestInfo, ChatMessage.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the **tenantId** property on the channel).
+ /// A collection of all the messages in the chat. Nullable.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -113,7 +111,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// 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.
+ /// Create new navigation property to messages for chats
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -141,7 +139,7 @@ public RequestInformation ToPostRequestInformation(ChatMessage body, Action
- /// Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the **tenantId** property on the channel).
+ /// A collection of all the messages in the chat. Nullable.
///
public class MessagesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/PinnedMessages/PinnedMessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/PinnedMessages/PinnedMessagesRequestBuilder.cs
index 23ba3dd4070..362250f480f 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/PinnedMessages/PinnedMessagesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/PinnedMessages/PinnedMessagesRequestBuilder.cs
@@ -40,8 +40,7 @@ public PinnedMessagesRequestBuilder(Dictionary pathParameters, I
public PinnedMessagesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/pinnedMessages{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Get a list of pinnedChatMessages in a chat.
- /// Find more info here
+ /// A collection of all the pinned messages in the chat. Nullable.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -60,8 +59,7 @@ public async Task GetAsync(Action(requestInfo, PinnedChatMessageInfoCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message.
- /// Find more info here
+ /// Create new navigation property to pinnedMessages for chats
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -82,7 +80,7 @@ public async Task PostAsync(PinnedChatMessageInfo body, A
return await RequestAdapter.SendAsync(requestInfo, PinnedChatMessageInfo.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Get a list of pinnedChatMessages in a chat.
+ /// A collection of all the pinned messages in the chat. Nullable.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -108,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message.
+ /// Create new navigation property to pinnedMessages for chats
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -136,7 +134,7 @@ public RequestInformation ToPostRequestInformation(PinnedChatMessageInfo body, A
return requestInfo;
}
///
- /// Get a list of pinnedChatMessages in a chat.
+ /// A collection of all the pinned messages in the chat. Nullable.
///
public class PinnedMessagesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/SendActivityNotification/SendActivityNotificationRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/SendActivityNotification/SendActivityNotificationRequestBuilder.cs
index c8e0d6fc803..c4d24ee59c8 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/SendActivityNotification/SendActivityNotificationRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/SendActivityNotification/SendActivityNotificationRequestBuilder.cs
@@ -27,8 +27,7 @@ public SendActivityNotificationRequestBuilder(Dictionary pathPar
public SendActivityNotificationRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/sendActivityNotification", rawUrl) {
}
///
- /// Send an activity feed notification in scope of a chat. For more details about sending notifications and the requirements for doing so, see sending Teams activity notifications.
- /// Find more info here
+ /// Invoke action sendActivityNotification
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(SendActivityNotificationPostRequestBody body, Action
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken);
}
///
- /// Send an activity feed notification in scope of a chat. For more details about sending notifications and the requirements for doing so, see sending Teams activity notifications.
+ /// Invoke action sendActivityNotification
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Tabs/TabsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Tabs/TabsRequestBuilder.cs
index a1667433b26..57bc05ca668 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Tabs/TabsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Tabs/TabsRequestBuilder.cs
@@ -40,8 +40,7 @@ public TabsRequestBuilder(Dictionary pathParameters, IRequestAda
public TabsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/tabs{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve the list of tabs in the specified chat.
- /// Find more info here
+ /// A collection of all the tabs in the chat. Nullable.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -60,8 +59,7 @@ public async Task GetAsync(Action(requestInfo, TeamsTabCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Add (pin) a tab to the specified chat. The corresponding app must already be installed in the chat.
- /// Find more info here
+ /// Create new navigation property to tabs for chats
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -82,7 +80,7 @@ public async Task PostAsync(TeamsTab body, Action(requestInfo, TeamsTab.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve the list of tabs in the specified chat.
+ /// A collection of all the tabs in the chat. Nullable.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -108,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Add (pin) a tab to the specified chat. The corresponding app must already be installed in the chat.
+ /// Create new navigation property to tabs for chats
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -136,7 +134,7 @@ public RequestInformation ToPostRequestInformation(TeamsTab body, Action
- /// Retrieve the list of tabs in the specified chat.
+ /// A collection of all the tabs in the chat. Nullable.
///
public class TabsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/UnhideForUser/UnhideForUserRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/UnhideForUser/UnhideForUserRequestBuilder.cs
index 19c0da4d32b..7240405747d 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/UnhideForUser/UnhideForUserRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/UnhideForUser/UnhideForUserRequestBuilder.cs
@@ -27,8 +27,7 @@ public UnhideForUserRequestBuilder(Dictionary pathParameters, IR
public UnhideForUserRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/unhideForUser", rawUrl) {
}
///
- /// Unhide a chat for a user.
- /// Find more info here
+ /// Invoke action unhideForUser
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(UnhideForUserPostRequestBody body, Action
- /// Unhide a chat for a user.
+ /// Invoke action unhideForUser
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Communications/CallRecords/Item/Sessions/SessionsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Communications/CallRecords/Item/Sessions/SessionsRequestBuilder.cs
index abc85809d75..01c3e521206 100644
--- a/src/Microsoft.Graph/Generated/Communications/CallRecords/Item/Sessions/SessionsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Communications/CallRecords/Item/Sessions/SessionsRequestBuilder.cs
@@ -40,8 +40,7 @@ public SessionsRequestBuilder(Dictionary pathParameters, IReques
public SessionsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/communications/callRecords/{callRecord%2Did}/sessions{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve the list of sessions associated with a callRecord object.
- /// Find more info here
+ /// List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -81,7 +80,7 @@ public async Task PostAsync(Session body, Action(requestInfo, Session.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve the list of sessions associated with a callRecord object.
+ /// List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -135,7 +134,7 @@ public RequestInformation ToPostRequestInformation(Session body, Action
- /// Retrieve the list of sessions associated with a callRecord object.
+ /// List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.
///
public class SessionsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Communications/Calls/CallsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Communications/Calls/CallsRequestBuilder.cs
index 5e41f5b9b68..5215b0b949d 100644
--- a/src/Microsoft.Graph/Generated/Communications/Calls/CallsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Communications/Calls/CallsRequestBuilder.cs
@@ -64,8 +64,7 @@ public async Task GetAsync(Action(requestInfo, CallCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create call enables your bot to create a new outgoing peer-to-peer or group call, or join an existing meeting. You will need to register the calling bot and go through the list of permissions needed as mentioned below.
- /// Find more info here
+ /// Create new navigation property to calls for communications
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -112,7 +111,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create call enables your bot to create a new outgoing peer-to-peer or group call, or join an existing meeting. You will need to register the calling bot and go through the list of permissions needed as mentioned below.
+ /// Create new navigation property to calls for communications
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Communications/Calls/Item/AddLargeGalleryView/AddLargeGalleryViewRequestBuilder.cs b/src/Microsoft.Graph/Generated/Communications/Calls/Item/AddLargeGalleryView/AddLargeGalleryViewRequestBuilder.cs
index 0e3c8f18587..bcfb2307e0e 100644
--- a/src/Microsoft.Graph/Generated/Communications/Calls/Item/AddLargeGalleryView/AddLargeGalleryViewRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Communications/Calls/Item/AddLargeGalleryView/AddLargeGalleryViewRequestBuilder.cs
@@ -28,8 +28,7 @@ public AddLargeGalleryViewRequestBuilder(Dictionary pathParamete
public AddLargeGalleryViewRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/addLargeGalleryView", rawUrl) {
}
///
- /// Add the large gallery view to a call. For details about how to identify a large gallery view participant in a roster so that you can retrieve the relevant data to subscribe to the video feed, see Identify large gallery view participants in a roster.
- /// Find more info here
+ /// Invoke action addLargeGalleryView
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -50,7 +49,7 @@ public async Task PostAsync(AddLargeGalleryViewPos
return await RequestAdapter.SendAsync(requestInfo, AddLargeGalleryViewOperation.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Add the large gallery view to a call. For details about how to identify a large gallery view participant in a roster so that you can retrieve the relevant data to subscribe to the video feed, see Identify large gallery view participants in a roster.
+ /// Invoke action addLargeGalleryView
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Communications/Calls/Item/Answer/AnswerRequestBuilder.cs b/src/Microsoft.Graph/Generated/Communications/Calls/Item/Answer/AnswerRequestBuilder.cs
index e38dd8b27ac..242d120ddde 100644
--- a/src/Microsoft.Graph/Generated/Communications/Calls/Item/Answer/AnswerRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Communications/Calls/Item/Answer/AnswerRequestBuilder.cs
@@ -27,8 +27,7 @@ public AnswerRequestBuilder(Dictionary pathParameters, IRequestA
public AnswerRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/answer", rawUrl) {
}
///
- /// Enable a bot to answer an incoming call. The incoming call request can be an invite from a participant in a group call or a peer-to-peer call. If an invite to a group call is received, the notification will contain the chatInfo and meetingInfo parameters. The bot is expected to answer, reject, or redirect the call before the call times out. The current timeout value is 15 seconds for regular scenarios, and 5 seconds for policy-based recording scenarios.
- /// Find more info here
+ /// Invoke action answer
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(AnswerPostRequestBody body, Action
- /// Enable a bot to answer an incoming call. The incoming call request can be an invite from a participant in a group call or a peer-to-peer call. If an invite to a group call is received, the notification will contain the chatInfo and meetingInfo parameters. The bot is expected to answer, reject, or redirect the call before the call times out. The current timeout value is 15 seconds for regular scenarios, and 5 seconds for policy-based recording scenarios.
+ /// Invoke action answer
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Communications/Calls/Item/CancelMediaProcessing/CancelMediaProcessingRequestBuilder.cs b/src/Microsoft.Graph/Generated/Communications/Calls/Item/CancelMediaProcessing/CancelMediaProcessingRequestBuilder.cs
index 598d44b0cd3..b187aede8b5 100644
--- a/src/Microsoft.Graph/Generated/Communications/Calls/Item/CancelMediaProcessing/CancelMediaProcessingRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Communications/Calls/Item/CancelMediaProcessing/CancelMediaProcessingRequestBuilder.cs
@@ -28,8 +28,7 @@ public CancelMediaProcessingRequestBuilder(Dictionary pathParame
public CancelMediaProcessingRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/cancelMediaProcessing", rawUrl) {
}
///
- /// Cancels processing for any in-progress media operations. Media operations refer to the IVR operations playPrompt and recordResponse, which are by default queued to process in order. The **cancelMediaProcessing** method cancels any operation that is in-process as well as operations that are queued. For example, this method can be used to clean up the IVR operation queue for a new media operation. However, it will not cancel a **subscribeToTone** operation because it operates independent of any operation queue.
- /// Find more info here
+ /// Invoke action cancelMediaProcessing
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -50,7 +49,7 @@ public async Task PostAsync(CancelMediaProcessin
return await RequestAdapter.SendAsync(requestInfo, CancelMediaProcessingOperation.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Cancels processing for any in-progress media operations. Media operations refer to the IVR operations playPrompt and recordResponse, which are by default queued to process in order. The **cancelMediaProcessing** method cancels any operation that is in-process as well as operations that are queued. For example, this method can be used to clean up the IVR operation queue for a new media operation. However, it will not cancel a **subscribeToTone** operation because it operates independent of any operation queue.
+ /// Invoke action cancelMediaProcessing
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Communications/Calls/Item/ChangeScreenSharingRole/ChangeScreenSharingRoleRequestBuilder.cs b/src/Microsoft.Graph/Generated/Communications/Calls/Item/ChangeScreenSharingRole/ChangeScreenSharingRoleRequestBuilder.cs
index 77d4d01099b..363c72d564a 100644
--- a/src/Microsoft.Graph/Generated/Communications/Calls/Item/ChangeScreenSharingRole/ChangeScreenSharingRoleRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Communications/Calls/Item/ChangeScreenSharingRole/ChangeScreenSharingRoleRequestBuilder.cs
@@ -27,8 +27,7 @@ public ChangeScreenSharingRoleRequestBuilder(Dictionary pathPara
public ChangeScreenSharingRoleRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/changeScreenSharingRole", rawUrl) {
}
///
- /// Allow applications to share screen content with the participants of a group call.
- /// Find more info here
+ /// Invoke action changeScreenSharingRole
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -49,7 +48,7 @@ public async Task PostAsync(ChangeScreenSharingRolePostRequestBody body, Action<
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken);
}
///
- /// Allow applications to share screen content with the participants of a group call.
+ /// Invoke action changeScreenSharingRole
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Communications/Calls/Item/ContentSharingSessions/ContentSharingSessionsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Communications/Calls/Item/ContentSharingSessions/ContentSharingSessionsRequestBuilder.cs
index d4bbaae7504..6f1b5842772 100644
--- a/src/Microsoft.Graph/Generated/Communications/Calls/Item/ContentSharingSessions/ContentSharingSessionsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Communications/Calls/Item/ContentSharingSessions/ContentSharingSessionsRequestBuilder.cs
@@ -40,8 +40,7 @@ public ContentSharingSessionsRequestBuilder(Dictionary pathParam
public ContentSharingSessionsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/contentSharingSessions{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve a list of contentSharingSession objects in a call.
- /// Find more info here
+ /// Get contentSharingSessions from communications
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -81,7 +80,7 @@ public async Task PostAsync(ContentSharingSession body, A
return await RequestAdapter.SendAsync(requestInfo, ContentSharingSession.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve a list of contentSharingSession objects in a call.
+ /// Get contentSharingSessions from communications
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -135,7 +134,7 @@ public RequestInformation ToPostRequestInformation(ContentSharingSession body, A
return requestInfo;
}
///
- /// Retrieve a list of contentSharingSession objects in a call.
+ /// Get contentSharingSessions from communications
///
public class ContentSharingSessionsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Communications/Calls/Item/KeepAlive/KeepAliveRequestBuilder.cs b/src/Microsoft.Graph/Generated/Communications/Calls/Item/KeepAlive/KeepAliveRequestBuilder.cs
index 6f214fd4d81..543ad455d7f 100644
--- a/src/Microsoft.Graph/Generated/Communications/Calls/Item/KeepAlive/KeepAliveRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Communications/Calls/Item/KeepAlive/KeepAliveRequestBuilder.cs
@@ -27,8 +27,7 @@ public KeepAliveRequestBuilder(Dictionary pathParameters, IReque
public KeepAliveRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/keepAlive", rawUrl) {
}
///
- /// Make a request to this API every 15 to 45 minutes to ensure that an ongoing call remains active. A call that does not receive this request within 45 minutes is considered inactive and will subsequently end. At least one successful request must be made within 45 minutes of the previous request, or the start of the call. We recommend that you send a request in shorter time intervals (every 15 minutes). Make sure that these requests are successful to prevent the call from timing out and ending. Attempting to send a request to a call that has already ended will result in a `404 Not-Found` error. The resources related to the call should be cleaned up on the application side.
- /// Find more info here